<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Dev4Press&#187; seo Tag Archives, page 1 of 1 | Dev4Press</title>
	<atom:link href="http://www.dev4press.com/tag/seo/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dev4press.com</link>
	<description>Premium Plugins and Themes for WordPress</description>
	<lastBuildDate>Tue, 21 May 2013 19:59:10 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>How WordPress URL rewriting works?</title>
		<link>http://www.dev4press.com/2012/tutorials/wordpress/practical/how-wordpress-url-rewriting-works/</link>
		<comments>http://www.dev4press.com/2012/tutorials/wordpress/practical/how-wordpress-url-rewriting-works/#comments</comments>
		<pubDate>Wed, 14 Mar 2012 13:00:12 +0000</pubDate>
		<dc:creator>MillaN</dc:creator>
				<category><![CDATA[Practical]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[archive]]></category>
		<category><![CDATA[author archive feed]]></category>
		<category><![CDATA[default post type]]></category>
		<category><![CDATA[engines]]></category>
		<category><![CDATA[feed url]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[permalinks]]></category>
		<category><![CDATA[Permalinks panel]]></category>
		<category><![CDATA[permalinks structures]]></category>
		<category><![CDATA[post types]]></category>
		<category><![CDATA[query elements]]></category>
		<category><![CDATA[regular expression]]></category>
		<category><![CDATA[rewrite rules]]></category>
		<category><![CDATA[search engines]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[tags]]></category>
		<category><![CDATA[URL request]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[WordPress Codex]]></category>

		<guid isPermaLink="false">http://www.dev4press.com/?p=15288</guid>
		<description><![CDATA[On of the most important features WordPress has is permalinks rewrite engine that can create all those pretty links we are so used to with no query elements like question marks or ampersand. Did you wonder how permalinks work and what can you do to customize them? Read on.]]></description>
				<content:encoded><![CDATA[<p>On of the most important features WordPress has is permalinks rewrite engine that can create all those pretty links we are so used to with no query elements like question marks or ampersand. Did you wonder how permalinks work and what can you do to customize them? Read on.</p>
<blockquote><p>This article explains what happens when WordPress resolves URL request that uses pretty permalinks. This article doesn&#8217;t include examples with creating custom permalinks structures. I am planning to have additional articles to cover that.</p></blockquote>
<p>By default, pretty permalinks are disabled in WordPress. Reason for that is that in some cases they can&#8217;t be activated without user intervention. For pretty permalinks to work, WordPress needs access to .htaccess file (if on Apache server) where it needs to add few lines that are base for the rewrite engine in WordPress. And that also requires Apache mod_rewrite module. This module is part of Apache installations and it is very rare that it is missing. Code added into htaccess file basically redirects all URL&#8217;s to WordPress index.php and that allows WordPress to break URL into parts and using regular expressions detect what content to display.</p>
<p>WordPress supports also PATHINFO permalinks that don&#8217;t require mod_rewrite module, but permalinks in that case must start with index.php. More info on this you can find on the WordPress Codex Permalinks page (links are at the end of this article). There are some setup differences in using permalinks for Apache, IIS or other servers, but they can work with any of the currently available servers for Windows, Linux or MacOS.</p>
<p>So, basic thing to activate rewrite engine in WordPress is to enable permalinks from WordPress Settings/Permalinks panel. If it is set to Default, permalinks are disabled, any other value they are active.</p>
<h3>Why do you need these permalinks?</h3>
<p>Well, there are many reasons, and most important reasons are SEO and that they look much nicer and user-friendly than long query strings in URL. Especially if you have complex website structure. Search Engine Optimizations benefits from permalinks, because they contain more relevant information about the content, and most search engines have a use for that when indexing websites.</p>
<p>Older versions of WordPress were known to work slower because of some permalinks structures that required additional SQL queries, but since WordPress 3.3 most critical permalinks structures are optimized and there is no performance penalty if you use post name only in the URL. Even with older WordPress versions performance was affected with only some structures and with large number of posts.</p>
<p>Permalinks are a must in a website, and very few WordPress websites don&#8217;t use it (mostly default installations, left with permalinks disabled). What to choose for permalinks is another matter.</p>
<h3>Default permalinks settings</h3>
<p>To quick start using the permalinks, you can select one of the predefined rules from Permalinks panel. Also, you can see Custom Structure field where you can create structure you want. What this panel doesn&#8217;t say is that those rules are only for posts (default post type: post). WordPress allows you to customize only this post type rewrite rules, nothing else! Pages in WordPress always use same rewrite structure: only sanitized version of the page name. And, that is the rule you can&#8217;t change. For archives, Permalinks panel offers only two settings: what to use as a base for category and tags archives.</p>
<p>Beside this, there are plenty more rewrite rules that WordPress will not allow you to change (well, not directly anyway). These rules include: archives for authors, date base archives, attachments, feeds, custom post types, custom taxonomies and generic archives.</p>
<p>When you create rules on the Permalinks panel, you don&#8217;t need to handle regular expressions, but you can use special tags to form the URL. By default, WordPress uses several structure tags (full list in the Codex, check the link at the bottom). If you use these tags in the URL they will be replaced with actual data. If element in the URL is not recognized, it will be left like that as a part of URL. This way you can add static parts of the URL.</p>
<p>Most things in WordPress use more than one rewrite rule. To resolve year based archive, WP needs separate rules to match: basic year archive URL, URL with page numbers and feed URL. Some things need more than 3 rules, for a post you need 5 rules.</p>
<h3>Resolving rewrite rules</h3>
<p>To resolve URL, WordPress uses a list of rewrite rules. Rules are based on regular expressions, and each regular expression in the list points to a query based URL. For instance, here is the rule to resolve author archive feed:</p>
<p><strong>Regular Expression:</strong> author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$<br />
<strong>WP Resolved Query:</strong> index.php?author_name=$matches[1]&amp;feed=$matches[2]</p>
<p>I am not going to go into how regular expressions work, but URL is matched against all regular expressions in the rules list, until we get a match. When URL is matched against expression, query for that expression is than used to resolve requested URL to a query based URL. In the query in example above you see $matches[1] and $matches[2]. These are values detected by regular expression from requested URL. These values are URL parts marked with &#8216;(&#8216; and &#8216;)&#8217; in the regular expression. So, if your URL is this:</p>
<blockquote>
<pre>http://www.example.com/author/admin/feed/rss/</pre>
</blockquote>
<p>Website URL part is removed, and we get the request:</p>
<blockquote>
<pre>author/admin/feed/rss/</pre>
</blockquote>
<p>This is what WordPress than matches against the rewrite rules, it will match it against our example expression above. Words &#8216;admin&#8217; and &#8216;rss&#8217; are matched/extracted from regular expression, they are replacing $matches[1] and $matches[2] and resolved query based URL is now this:</p>
<blockquote>
<pre><strong>index.php?author_name=admin&amp;feed=rss</strong></pre>
</blockquote>
<p>And this is something WordPress can use to prepare page, load template and data for it. This final query is used to create WP Query object that is ultimately used to get posts for that request.</p>
<p>If all rewrite rules fail, the last rule will always resolve. This base rule resolves any request to a page request. If that page is not found, you get 404 error. If the URL is resolved by some rewrite rule, and the WordPress Query doesn&#8217;t find any results to match, again you will get 404 error.</p>
<h3>Custom rewrite rules</h3>
<p>If you need to customize URL for posts, you can use Settings Permalinks panel and do it from there. But, anything else you must do it through code. WordPress 3.0 added support for custom post types, and there is one very important thing missing: custom rewrite rules for them. All custom post types by default have same URL structure that includes name for the post type and name for the post. Same thing goes for the archives for the post types, or date base archives. Nothing can be customized without custom coding.</p>
<p>But, there is even more important use for custom permalinks. Each URL is resolved to a query that WordPress uses to get posts. So, date based query and URL filter posts by the date. If you request this:</p>
<blockquote>
<pre>http://www.example.com/2012/03/</pre>
</blockquote>
<p>You will get all posts published in the year 2012, in March. And if you want to get all posts belonging to custom post type <strong>movie</strong>, you can use this:</p>
<blockquote>
<pre>http://www.example.com/movie/</pre>
</blockquote>
<p>But, what to do if you want to get all posts for custom post type <strong>movie</strong> for 2012? You would like it to be this:</p>
<blockquote>
<pre>http://www.example.com/movie/2012/03/</pre>
</blockquote>
<p>But, there is no rule for that in WordPress and this will not work, so instead this elegant link you must use only this:</p>
<blockquote>
<pre>http://www.example.com/movie/?year=2012&amp;monthnum=3</pre>
</blockquote>
<p>Anything that is part of the URL: resolved by WordPress or added like here with direct query element is used in WordPress Query engine to get posts. There are many examples where additional rewrite rules can make a big difference in getting cleaner links.</p>
<p>Most important thing is filtering posts by post type and taxonomy. Normally, you have URL that filters posts by post type or by taxonomy term. If you want to mix those, you need to use query elements. So, if your <strong>movie</strong> custom post type has taxonomies category and genre, to filter by both with URL you need to use something like this:</p>
<blockquote>
<pre>http://www.example.com/movie/?cat=short&amp;genre=animated</pre>
</blockquote>
<p>But, what if you can do it like this:</p>
<blockquote>
<pre>http://www.example.com/movie/short/animated/</pre>
</blockquote>
<p>That would be great, and if you have more taxonomies you can have more terms listed like this, one term for each taxonomy. But, again, this can&#8217;t be done without using custom coding to implement additional rewrite rules and you can&#8217;t use such links&#8230;</p>
<h3>GD Custom Posts and Taxonomies Tools Pro</h3>
<p><span style="text-decoration: underline;">&#8230;Oh wait, you can!</span></p>
<p>Ever since custom post types are added to WordPress, I used them for many things, and I always hated limitations with permalinks. So, I started adding customized rewrite rules with my GD Custom Posts and Taxonomies Tools Pro plugin. Plugin now allows fully customized single post permalinks for custom post types (just like for default posts), date based archives for custom post types and archives with intersection of custom post types and taxonomies. All that without any additional coding, just by setting rules for each custom post type you add through this plugin.</p>
<p>Check out <strong><a href="http://www.dev4press.com/2011/tutorials/plugins/gd-taxonomies-tools/enhanced-custom-post-types-url-rewriting/" target="_blank">this tutorial with examples</a></strong> to see what can be done with this plugin and custom post types. All this is used on Dev4Press for Central Documentation and Feature of Day sections to filter posts by terms. I have few more ideas for additional rewrite rules and more customizable links structure.</p>
<h3>Canonical Redirect</h3>
<p>This is very interesting and useful (usually) feature. Sometimes, WordPress can partially match the URL depending on the rule. Than, it will find what URL should resolve to, and than generate proper URL for it, and redirect to it. So, you request one URL, and that gets replaced with some other URL. If you use category taxonomy in the URL, with hierarchy ending with post name like this:</p>
<blockquote>
<pre>http://www.example/parent-category/child-category/post-name/</pre>
</blockquote>
<p>If you make this request:</p>
<blockquote>
<pre>http://www.example/parent-category/post-name/</pre>
</blockquote>
<p>WordPress will find the post it needs, and than will determine that URL is not canonical as the rewrite rules require it to be, it will than generate full URL and redirect to it. But, if you don&#8217;t want this to happen, or you have additional rewrite rules for the post, canonical redirect will ignore all that and will redirect to URL it decides is correct. In that case, you must disable canonical redirect. To do that, you can use this PHP code:</p>
<pre class="brush: php; title: ; notranslate">remove_filter('template_redirect', 'redirect_canonical');</pre>
<h3>Conclusion</h3>
<p>Handling custom rewrite rules is not easy, and very often you will run into conflicts. If you try to use same regular expression for your rule, you will remove default rule that was using same expression, and that will most likely break something. When working with rules, it is useful to have list of all rules in the system. You can see this list with <a href="http://www.dev4press.com/gd-press-tools/" target="_blank">GD Press Tools Pro</a> debugger, or you can use few functions (check the debug rewrite rules tutorial, link at the bottom).</p>
<p>WordPress rewriter is very powerful, but by default it uses only a fraction of what it can do, since only basic rules are implemented, and if you need more, you must write code for that. The goal was to keep things simple in the core, and to allow freedom to customize things if needed. Not everyone will need so complex rewrite rules, and basic ones are enough. If you need more, you need to dig deeper or to use specialized plugins to achieve that.</p>
<div class="xss-infobox xss-infobox-color-blue"><h4>Useful Links:</h4>
<ul>
<li>On Dev4Press.com: <a href="http://www.dev4press.com/2012/tutorials/wordpress/practical/debug-wordpress-rewrite-rules-matching/" target="_blank">Debug WordPress rewrite rules matching</a></li>
<li>On Dev4Press.com: <a href="http://www.dev4press.com/gd-taxonomies-tools/" target="_blank">GD Custom Posts And Taxonomies Tools Pro</a></li>
<li>On WordPress.org: <a href="http://codex.wordpress.org/Using_Permalinks" target="_blank">Using Permalinks and default settings</a></li>
</ul></div>
<script src="http://feeds.feedburner.com/~s/adsense@gdragon.info?i=http://www.dev4press.com/2012/tutorials/wordpress/practical/how-wordpress-url-rewriting-works/" type="text/javascript" charset="utf-8"></script>]]></content:encoded>
			<wfw:commentRss>http://www.dev4press.com/2012/tutorials/wordpress/practical/how-wordpress-url-rewriting-works/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>In Development: GD Press Tools 4.5 Pro</title>
		<link>http://www.dev4press.com/2012/blog/development/in-development-gd-press-tools-4-5-pro/</link>
		<comments>http://www.dev4press.com/2012/blog/development/in-development-gd-press-tools-4-5-pro/#comments</comments>
		<pubDate>Tue, 28 Feb 2012 23:10:02 +0000</pubDate>
		<dc:creator>MillaN</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[backup features]]></category>
		<category><![CDATA[comment spam features]]></category>
		<category><![CDATA[development tools]]></category>
		<category><![CDATA[dynamic xml]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[HTACCESS tweaks]]></category>
		<category><![CDATA[moderation]]></category>
		<category><![CDATA[multisite network]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[Powerful SEO module]]></category>
		<category><![CDATA[preliminary list]]></category>
		<category><![CDATA[profile changes]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[SEO features]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[SPAM detection]]></category>
		<category><![CDATA[support forum]]></category>
		<category><![CDATA[website security]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[xml files]]></category>

		<guid isPermaLink="false">http://www.dev4press.com/?p=14801</guid>
		<description><![CDATA[Next major version for GD Press Tools Pro will go into development soon, and it will take some time to complete considering how many new features and improvements are planned for it. This is an overview of what you can expect in the new version, but this list is not complete.]]></description>
				<content:encoded><![CDATA[<p>Next major version for GD Press Tools Pro will go into development soon, and it will take some time to complete considering how many new features and improvements are planned for it. This is an overview of what you can expect in the new version, but this list is not complete.</p>
<ol>
<li><strong>Improvements to backup and restore.</strong> New set of backup features will include adding sites from backup into multisite network, and will allow you to export site from network into a standalone website. Restore script will be improved, and parts of it will be added into main plugin code to allow for adding sites into multisite network.</li>
<li><strong>More HTACCESS tweaks.</strong> There are number of new tweaks and options related to HTACCESS that will be added to help with the website security. The list of these tweaks is not yet finalized.</li>
<li><strong>Expanded comment SPAM features.</strong> This is still not finalized, but I have several ideas on how to improve security with improvements to SPAM detection. Few methods will be available and they should be as automated as possible to reduce the need for moderation.</li>
<li><strong>Logging actions into database.</strong> Set of features that logs the users activity on the website will include a wide range of interactions like profile changes, activities defined by plugins through filters and functions use.</li>
<li><strong>Full set of SEO features.</strong> Powerful SEO module is coming, with options to control titles, meta tags and descriptions for all sorts of pages on your website.</li>
<li><strong>Dynamic XML Sitemaps.</strong> Right now sitemaps are generated as static XML files. But, in multisite environment, this is not a good method to use considering how many files you will need to keep. New method will allow to generate sitemaps through WordPress with method similar to feeds.</li>
</ol>
<p>As I said, this is preliminary list, and more minor features will be added to 4.5. If you have any suggestions, please let me know through comments here or in the support forum. GD Press Tools Pro 4.5 will go into development in late March, and is expected in May or June 2012.</p>
<script src="http://feeds.feedburner.com/~s/adsense@gdragon.info?i=http://www.dev4press.com/2012/blog/development/in-development-gd-press-tools-4-5-pro/" type="text/javascript" charset="utf-8"></script>]]></content:encoded>
			<wfw:commentRss>http://www.dev4press.com/2012/blog/development/in-development-gd-press-tools-4-5-pro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Preview of GD Press Tools Pro 4.3</title>
		<link>http://www.dev4press.com/2011/blog/development/preview-of-gd-press-tools-pro-4-3/</link>
		<comments>http://www.dev4press.com/2011/blog/development/preview-of-gd-press-tools-pro-4-3/#comments</comments>
		<pubDate>Sun, 20 Nov 2011 17:00:59 +0000</pubDate>
		<dc:creator>MillaN</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[cron]]></category>
		<category><![CDATA[debugger]]></category>
		<category><![CDATA[Generator]]></category>
		<category><![CDATA[InnoDB engines]]></category>
		<category><![CDATA[maintenance]]></category>
		<category><![CDATA[modularity]]></category>
		<category><![CDATA[multisite]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[network modules]]></category>
		<category><![CDATA[panel]]></category>
		<category><![CDATA[preview]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[Sitemap]]></category>
		<category><![CDATA[smtp]]></category>

		<guid isPermaLink="false">http://www.dev4press.com/?p=11448</guid>
		<description><![CDATA[Main goal with 4.3 is to finish the plugin core changes started with 4.2 version. Now, focus is on modularity, and many of the plugin features will be handled as modules for better control in the multisite/network environments. Some new features and fixes will be also included.]]></description>
				<content:encoded><![CDATA[<p>Main goal with 4.3 is to finish the plugin core changes started with 4.2 version. Now, focus is on modularity, and many of the plugin features will be handled as modules for better control in the multisite/network environments. Some new features and fixes will be also included.</p>
<p>Some of the plugin features will not be usable and controlled for network mode for whole network and individual websites. This means that: Admin Bar, SMTP, Maintenance Mode and Debugger will be both site and network modules. Sitemap Generator and SEO will be site only modules. Settings saving will be changed, plugin loading optimized and new modules based core structure improved. With these changes whole network can be put under maintenance mode, individual sites in the network can control SMTP settings and debugger.</p>
<p>Other changes will include: Cron panel can show source for the jobs, main tracker (used by debugger) can be load from the wp-config.php, database panel takes into account table engine, and plugin can take into account differences between MyISAM and InnoDB engines. As for the fixes, minor network problems are taken care of, minor problems with FaceBook image meta tag with some themes.</p>
<p>In continuation of adding SEO features, support for robots meta tags is expanded with custom post types and custom taxonomies. Also, 3 more robots meta tags are added, specific to Google search engine, bringing total of supported robot tags to 11.</p>
<p>New plugin version will be released on November 28 2011.</p>
<script src="http://feeds.feedburner.com/~s/adsense@gdragon.info?i=http://www.dev4press.com/2011/blog/development/preview-of-gd-press-tools-pro-4-3/" type="text/javascript" charset="utf-8"></script>]]></content:encoded>
			<wfw:commentRss>http://www.dev4press.com/2011/blog/development/preview-of-gd-press-tools-pro-4-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GD Press Tools 4.2.4 Pro</title>
		<link>http://www.dev4press.com/2011/blog/plugins-news/gd-press-tools-4-2-4-pro/</link>
		<comments>http://www.dev4press.com/2011/blog/plugins-news/gd-press-tools-4-2-4-pro/#comments</comments>
		<pubDate>Tue, 20 Sep 2011 22:05:57 +0000</pubDate>
		<dc:creator>MillaN</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Adminbar plugin menu]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[centralized cleanup tools]]></category>
		<category><![CDATA[comments cleanup operations]]></category>
		<category><![CDATA[dashboard widget]]></category>
		<category><![CDATA[maintenance mode]]></category>
		<category><![CDATA[meta robots]]></category>
		<category><![CDATA[quick tools]]></category>
		<category><![CDATA[quick tools operations]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://localhost/www.dev4press.com/?p=7109</guid>
		<description><![CDATA[New minor revision of GD Press Tools Pro brings some bugs fixed and several new features as well: centralized cleanup tools and many updates to plugins admin bar options to include quick tools operations and improvements to existing comments cleanup operations.]]></description>
				<content:encoded><![CDATA[<div id="attachment_9517" class="wp-caption alignright" style="width: 280px"><a title="Cleanup Tools" href="http://cdn.dev4press.com/wp-content/uploads/2011/09/gdpt42_cleanup_tools.png" rel="lightbox"><img class="size-medium wp-image-9517" title="Cleanup Tools" src="http://cdn.dev4press.com/wp-content/uploads/2011/09/gdpt42_cleanup_tools-300x208.png" alt="Cleanup Tools" width="270" height="187" /></a><p class="wp-caption-text">Cleanup Tools</p></div>
<p>New minor revision of GD Press Tools Pro brings some bugs fixed and several new features as well: centralized cleanup tools and many updates to plugins admin bar options to include quick tools operations and improvements to existing comments cleanup operations.</p>
<p>Plugin Tools panel now has a new tab for cleanup. Some operations there were already in the plugin in the dashboard widget, but there are many more new ones, that you will not need to run very often. Panel uses AJAX to execute cleanup, and you will get a report after process is done. Results of the cleanup (with all options used) is on the image bellow.</p>
<div id="attachment_9524" class="wp-caption alignleft" style="width: 280px"><a title="Cleanup Report" href="http://cdn.dev4press.com/wp-content/uploads/2011/09/gdpt42_cleanup_results.png" rel="lightbox"><img class="size-medium wp-image-9524" title="Cleanup Report" src="http://cdn.dev4press.com/wp-content/uploads/2011/09/gdpt42_cleanup_results-300x190.png" alt="Cleanup Report" width="270" height="171" /></a><p class="wp-caption-text">Cleanup Report</p></div>
<p>Adminbar plugin menu is expanded with Quick Tools. Right now it has options to control maintenance mode and to clear WordPress rewrite rules. Cleanup options for comments are updated and now include commentmeta table. Saving SEO meta robots settings is also fixed.</p>
<p>As always, please report any bugs you find in the forums, and I will get on fixing it.</p>
<h3>Links and Resources</h3>
<p>Here is the list of tutorials that you might find useful:</p>
<blockquote><p><a title="How to backup and restore your website" href="http://www.dev4press.com/2011/tutorials/plugins-tutorials/gd-press-tools/how-to-backup-and-restore-your-website/" target="_blank">How to backup and restore your website</a><br />
<a title="Using GD Press Tools 4.2 Backup" href="http://www.dev4press.com/2011/tutorials/plugins-tutorials/gd-press-tools/using-gd-press-tools-4-2-backup/" target="_blank">Using GD Press Tools 4.2 Backup</a><br />
<a title="Using GD Press Tools Auto Tagger" href="http://www.dev4press.com/2011/tutorials/plugins-tutorials/gd-press-tools/using-gd-press-tools-auto-tagger/" target="_blank">Using GD Press Tools Auto Tagger</a></p></blockquote>
<p>Comparing GD Press Tools Pro versus BackupBuddy:</p>
<blockquote><p><a title="GD Press Tools Pro vs BackupBuddy" href="http://www.dev4press.com/compare/compare-gd-press-tools-pro-with-backupbuddy/" target="_blank">GD Press Tools Pro versus BackupBuddy</a></p></blockquote>
<p>To see the list of plugin features, overview and to buy the plugin, visit these pages:</p>
<blockquote><p><a title="GD Press Tools Overview" href="http://www.dev4press.com/gd-press-tools/" target="_blank">GD Press Tools Overview</a><br />
<a title="GD Press Tools Main Page" href="http://www.dev4press.com/plugins/gd-press-tools/" target="_blank">GD Press Tools Main Page</a><br />
<a title="GD Press Tools Frequently asked questions" href="http://www.dev4press.com/plugins/gd-press-tools/faq" target="_blank">GD Press Tools Frequently Asked Questions</a><br />
<strong><a title="Buy GD Press Tools Pro" href="http://www.dev4press.com/plugins/gd-press-tools/editions/" target="_blank">Buy GD Press Tools Pro</a></strong></p></blockquote>
<script src="http://feeds.feedburner.com/~s/adsense@gdragon.info?i=http://www.dev4press.com/2011/blog/plugins-news/gd-press-tools-4-2-4-pro/" type="text/javascript" charset="utf-8"></script>]]></content:encoded>
			<wfw:commentRss>http://www.dev4press.com/2011/blog/plugins-news/gd-press-tools-4-2-4-pro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>gdHeadSpace4 4.1</title>
		<link>http://www.dev4press.com/2011/blog/plugins-news/gdheadspace4-4-1/</link>
		<comments>http://www.dev4press.com/2011/blog/plugins-news/gdheadspace4-4-1/#comments</comments>
		<pubDate>Wed, 17 Aug 2011 22:05:28 +0000</pubDate>
		<dc:creator>MillaN</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[boxes]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[custom post types]]></category>
		<category><![CDATA[headspace]]></category>
		<category><![CDATA[initial release]]></category>
		<category><![CDATA[meta]]></category>
		<category><![CDATA[metabox]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.dev4press.com/?p=6428</guid>
		<description><![CDATA[It was awhile since the last version of the my modded edition of HeadScape plugin. And this new gdHeadSpace4 4.1 one ads few custom post types related features (support for archives, embedding meta boxes) and it has several very important bugs fixed with meta tags rendering.]]></description>
				<content:encoded><![CDATA[<p>It was awhile since the last version of the my modded edition of HeadScape plugin. And this new gdHeadSpace4 4.1 one ads few custom post types related features (support for archives, embedding meta boxes) and it has several very important bugs fixed with meta tags rendering.</p>
<p>Page tag for the meta elements rendering was broken, and some post type related functions were missing. That is fixed now. Meta box for posts belonging to custom post types is added. Support for archives for custom post types is also included.</p>
<blockquote><p><strong>Initial release post</strong>:<br />
<a href="http://www.dev4press.com/2010/blog/development/modded-plugin-headspace2/">http://www.dev4press.com/2010/blog/development/modded-plugin-headspace2/</a><br />
<strong>gdHeadspace4</strong>:<br />
<a href="http://www.dev4press.com/plugins/gd-headspace4/">http://www.dev4press.com/plugins/gd-headspace4/</a><br />
<strong>Original Headspace2</strong>:<br />
<a href="http://wordpress.org/extend/plugins/headspace2/">http://wordpress.org/extend/plugins/headspace2/</a></p></blockquote>
<script src="http://feeds.feedburner.com/~s/adsense@gdragon.info?i=http://www.dev4press.com/2011/blog/plugins-news/gdheadspace4-4-1/" type="text/javascript" charset="utf-8"></script>]]></content:encoded>
			<wfw:commentRss>http://www.dev4press.com/2011/blog/plugins-news/gdheadspace4-4-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GD Press Tools 4.0.8 Pro</title>
		<link>http://www.dev4press.com/2011/blog/plugins-news/gd-press-tools-4-0-8-pro/</link>
		<comments>http://www.dev4press.com/2011/blog/plugins-news/gd-press-tools-4-0-8-pro/#comments</comments>
		<pubDate>Sat, 30 Apr 2011 11:06:59 +0000</pubDate>
		<dc:creator>MillaN</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[languages]]></category>
		<category><![CDATA[minor changes]]></category>
		<category><![CDATA[Norwegian]]></category>
		<category><![CDATA[partial translations]]></category>
		<category><![CDATA[plugin version]]></category>
		<category><![CDATA[press tools]]></category>
		<category><![CDATA[revisions]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[Serbian]]></category>
		<category><![CDATA[statistics]]></category>
		<category><![CDATA[translation]]></category>

		<guid isPermaLink="false">http://www.dev4press.com/?p=5380</guid>
		<description><![CDATA[New plugin version is here, continuing with minor changes and fixing bugs reported in the last couple of weeks since previous plugin version was released. If nothing more is reported after this version, work will start on the list of features planned for next two major versions.]]></description>
				<content:encoded><![CDATA[<p>New plugin version is here, continuing with minor changes and fixing bugs reported in the last couple of weeks since previous plugin version was released. If nothing more is reported after this version, work will start on the list of features planned for next two major versions.</p>
<p>First two partial translations are included for Serbian and Norwegian languages. Hopefully, these two will be 100% translated by next version, and that more will come soon. As for the bugs, there were several small visual issues, missing translation strings, problem with creating protective index.php for backup folder, some deprecated functions use. All these are fixed in the 4.0.8.</p>
<p>I will soon announce plans for two next major revisions: 4.1 and 4.2. There are a lot of features on the list, so some things need to be prioritized. Most important changes to come are: SEO module, improved backup, restore backups script, actions logging, improved posts views statistics and updates to file manager. All suggestions are welcome.</p>
<blockquote><p>GD Press Tools <strong>4.0</strong> Pro: <a href="http://www.dev4press.com/gd-press-tools/">http://www.dev4press.com/gd-press-tools/</a></p></blockquote>
<script src="http://feeds.feedburner.com/~s/adsense@gdragon.info?i=http://www.dev4press.com/2011/blog/plugins-news/gd-press-tools-4-0-8-pro/" type="text/javascript" charset="utf-8"></script>]]></content:encoded>
			<wfw:commentRss>http://www.dev4press.com/2011/blog/plugins-news/gd-press-tools-4-0-8-pro/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>GD Press Tools 4.0.5 Pro</title>
		<link>http://www.dev4press.com/2011/blog/plugins-news/gd-press-tools-4-0-5-pro/</link>
		<comments>http://www.dev4press.com/2011/blog/plugins-news/gd-press-tools-4-0-5-pro/#comments</comments>
		<pubDate>Sun, 03 Apr 2011 23:28:07 +0000</pubDate>
		<dc:creator>MillaN</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[dashboard widget]]></category>
		<category><![CDATA[exclusions]]></category>
		<category><![CDATA[global settings]]></category>
		<category><![CDATA[improvements]]></category>
		<category><![CDATA[initialization procedure]]></category>
		<category><![CDATA[minor changes]]></category>
		<category><![CDATA[pins]]></category>
		<category><![CDATA[press tools]]></category>
		<category><![CDATA[pro tools]]></category>
		<category><![CDATA[procedure changes]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[sitemaps]]></category>
		<category><![CDATA[system backup]]></category>

		<guid isPermaLink="false">http://www.dev4press.com/?p=5279</guid>
		<description><![CDATA[GD Press Tools 4.0.5 Pro, brings one more new and very useful feature, also feature that many users requested: admin bar control based on the user role. I also added a filter for additional and finer control of the admin bar control. There are some more minor changes in this version.]]></description>
				<content:encoded><![CDATA[<p>GD Press Tools 4.0.5 Pro, brings one more new and very useful feature, also feature that many users requested: admin bar control based on the user role. I also added a filter for additional and finer control of the admin bar control. There are some more minor changes in this version.</p>
<div id="attachment_5283" class="wp-caption alignright" style="width: 280px"><a title="Admin Bar Controls" rel="lightbox" href="http://cdn.dev4press.com/wp-content/uploads/2011/04/gdpt4_adminbar.png"><img class="size-medium wp-image-5283" title="Admin Bar Controls" src="http://cdn.dev4press.com/wp-content/uploads/2011/04/gdpt4_adminbar-300x87.png" alt="Admin Bar Controls" width="270" height="78" /></a><p class="wp-caption-text">Admin Bar Controls</p></div>
<p>For both global settings (multisite) and normal settings you can set which user roles will be able to see the admin bar. You have it on the image on the right. Additional filter is added to documentation, so check it out there, it&#8217;s quite simple.</p>
<p>Pinning posts to dashboard is improved for full custom post types support and it&#8217;s now using only one dashboard widget for all types. Numerous fixes are included for pins code.</p>
<p>Other fixes include file system backup initialization procedure changes to fix the issue with overlapping exclusions in multi tasks backups and problem with metabox sitemap initialization before it&#8217;s used first. Still, please test backup with some more complex tasks to see if this change did the trick.</p>
<p>GD Press Tools 4.0.6/4.0.7 should get few more changes and improvements for generating sitemaps in multisite environment and first round of improvements to backup. Brand new SEO module coming in 4.1.</p>
<blockquote><p>GD Press Tools <strong>4.0</strong> Pro: <a href="http://www.dev4press.com/gd-press-tools/">http://www.dev4press.com/gd-press-tools/</a></p></blockquote>
<script src="http://feeds.feedburner.com/~s/adsense@gdragon.info?i=http://www.dev4press.com/2011/blog/plugins-news/gd-press-tools-4-0-5-pro/" type="text/javascript" charset="utf-8"></script>]]></content:encoded>
			<wfw:commentRss>http://www.dev4press.com/2011/blog/plugins-news/gd-press-tools-4-0-5-pro/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>GD Press Tools 4.0.4 Pro</title>
		<link>http://www.dev4press.com/2011/blog/plugins-news/gd-press-tools-4-0-4-pro/</link>
		<comments>http://www.dev4press.com/2011/blog/plugins-news/gd-press-tools-4-0-4-pro/#comments</comments>
		<pubDate>Mon, 21 Mar 2011 23:10:55 +0000</pubDate>
		<dc:creator>MillaN</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[content type]]></category>
		<category><![CDATA[different ways]]></category>
		<category><![CDATA[global priority]]></category>
		<category><![CDATA[improvements]]></category>
		<category><![CDATA[initialization problems]]></category>
		<category><![CDATA[meta]]></category>
		<category><![CDATA[options]]></category>
		<category><![CDATA[parameters]]></category>
		<category><![CDATA[press tools]]></category>
		<category><![CDATA[priorities]]></category>
		<category><![CDATA[pro tools]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[sitemaps]]></category>

		<guid isPermaLink="false">http://www.dev4press.com/?p=5124</guid>
		<description><![CDATA[GD Press Tools 4.0.4 Pro, brings another round of improvements to XML Sitemap Generator (different ways to calculate priorities, improved URL filtering to include all sitemap related parameters), few more other changes and fixes several bugs (including disabling admin bar).]]></description>
				<content:encoded><![CDATA[<p>GD Press Tools 4.0.4 Pro, brings another round of improvements to XML Sitemap Generator (different ways to calculate priorities, improved URL filtering to include all sitemap related parameters), few more other changes and fixes several bugs (including disabling admin bar).</p>
<div id="attachment_5139" class="wp-caption alignright" style="width: 176px"><a title="Metabox" rel="lightbox" href="http://cdn.dev4press.com/wp-content/uploads/2011/03/gdpt4_metabox.png"><img class="size-medium wp-image-5139" title="Metabox" src="http://cdn.dev4press.com/wp-content/uploads/2011/03/gdpt4_metabox-207x300.png" alt="Metabox" width="166" height="240" /></a><p class="wp-caption-text">Metabox</p></div>
<p>For each content sitemap type you can use numerical priorities and calculated ones. Calculations can be done differently depending on the content type: using comments count, using posts counts, using date ranges. Also, for each link added to sitemap, filter now allows overriding url, last modification date, priority and frequency allowing for fine tuning of each link. Also, meta box for each post shows XML Sitemap options: to exclude post or set override priority. Override priority will be used regardless of global priority set for that post type.</p>
<p>Disable admin bar option works again. Other fixed bugs include single post auto tagger retrieval, and some sitemap initialization problems with duplicated options loading.</p>
<p>GD Press Tools 4.0.5 or 4.0.6 should get few more changes and improvements for generating sitemaps in multisite environment. After that there will be more improvements to backup and brand new SEO module coming in 4.1.</p>
<blockquote><p>GD Press Tools <strong>4.0</strong> Pro: <a href="http://www.dev4press.com/gd-press-tools/">http://www.dev4press.com/gd-press-tools/</a></p></blockquote>
<script src="http://feeds.feedburner.com/~s/adsense@gdragon.info?i=http://www.dev4press.com/2011/blog/plugins-news/gd-press-tools-4-0-4-pro/" type="text/javascript" charset="utf-8"></script>]]></content:encoded>
			<wfw:commentRss>http://www.dev4press.com/2011/blog/plugins-news/gd-press-tools-4-0-4-pro/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>GD Press Tools 4.0.3 Pro</title>
		<link>http://www.dev4press.com/2011/blog/plugins-news/gd-press-tools-4-0-3-pro/</link>
		<comments>http://www.dev4press.com/2011/blog/plugins-news/gd-press-tools-4-0-3-pro/#comments</comments>
		<pubDate>Wed, 16 Mar 2011 14:00:41 +0000</pubDate>
		<dc:creator>MillaN</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[attachments]]></category>
		<category><![CDATA[boxes]]></category>
		<category><![CDATA[brand new]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[exclusions]]></category>
		<category><![CDATA[front page]]></category>
		<category><![CDATA[improvements]]></category>
		<category><![CDATA[jobs]]></category>
		<category><![CDATA[links list]]></category>
		<category><![CDATA[press tools]]></category>
		<category><![CDATA[priorities]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[sitemaps]]></category>
		<category><![CDATA[taxonomies]]></category>
		<category><![CDATA[taxonomy]]></category>
		<category><![CDATA[xml sitemap generator]]></category>

		<guid isPermaLink="false">http://www.dev4press.com/?p=5080</guid>
		<description><![CDATA[Brand new version, GD Press Tools 4.0.3 Pro, brings many improvements to XML Sitemap Generator (exclusions of posts and terms and extra links list), improved plugin front page boxes, added more descriptions to some of the options and fixes several bugs.]]></description>
				<content:encoded><![CDATA[<div id="attachment_5085" class="wp-caption alignright" style="width: 280px"><a title="Sitemap Exclusions and Extra Links" rel="lightbox" href="http://cdn.dev4press.com/wp-content/uploads/2011/03/gdpt4_sitemap_exc.png"><img class="size-medium wp-image-5085" title="Sitemap Exclusions and Extra Links" src="http://cdn.dev4press.com/wp-content/uploads/2011/03/gdpt4_sitemap_exc-300x296.png" alt="Sitemap Exclusions and Extra Links" width="270" height="266" /></a><p class="wp-caption-text">Sitemap Exclusions and Extra Links</p></div>
<p>Brand new version, GD Press Tools 4.0.3 Pro, brings many improvements to XML Sitemap Generator (exclusions of posts and terms and extra links list), improved plugin front page boxes, added more descriptions to some of the options and fixes several bugs.</p>
<p>New Extras &amp; Exclusions tab is on the image on the right. So, you have list of additional links to be added to sitemap. They will go into Core sitemap file, and you have new entry added to the Content Settings panel for these links.</p>
<p>Exclusions of posts can be done by post ID, and all post types are supported. You can exclude posts belonging to terms for any taxonomy. But, if you use WP 3.0, only categories and post tags will be used, for all the taxonomies you need WP 3.1. You can also exclude terms links from taxonomy archives sitemaps, for each taxonomy individually.</p>
<p>Also, now you can see the sitemap status on plugin front page. Cron jobs counts are also displayed there with few more quick links to different plugin panels.</p>
<p>Bugs fixed in this version include: adding attachments to sitemap wasn&#8217;t working, date archive splitting wasn&#8217;t working as expected, renaming admin username failing in some cases and few other minor problems.</p>
<p>Next version will add more XML Sitemap Generator changes that include priorities calculations for links added to sitemaps and post exclusion controls on the post edit panel. 4.0.5 or 4.0.6 should see few more changes and improvements for generating sitemaps in multisite environment. After that there will be more improvements to backup and brand new SEO module coming in 4.1.</p>
<blockquote><p>GD Press Tools <strong>4.0</strong> Pro: <a href="http://www.dev4press.com/gd-press-tools/">http://www.dev4press.com/gd-press-tools/</a></p></blockquote>
<script src="http://feeds.feedburner.com/~s/adsense@gdragon.info?i=http://www.dev4press.com/2011/blog/plugins-news/gd-press-tools-4-0-3-pro/" type="text/javascript" charset="utf-8"></script>]]></content:encoded>
			<wfw:commentRss>http://www.dev4press.com/2011/blog/plugins-news/gd-press-tools-4-0-3-pro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Book: WordPress Top Plugins</title>
		<link>http://www.dev4press.com/2011/blog/reviews/wordpress-top-plugins/</link>
		<comments>http://www.dev4press.com/2011/blog/reviews/wordpress-top-plugins/#comments</comments>
		<pubDate>Thu, 13 Jan 2011 17:07:59 +0000</pubDate>
		<dc:creator>MillaN</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[auto manual]]></category>
		<category><![CDATA[book contents]]></category>
		<category><![CDATA[chapter deals]]></category>
		<category><![CDATA[chapters]]></category>
		<category><![CDATA[e commerce solutions]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[gallery tags]]></category>
		<category><![CDATA[interface]]></category>
		<category><![CDATA[introduction chapter]]></category>
		<category><![CDATA[maintenance]]></category>
		<category><![CDATA[publishing book]]></category>
		<category><![CDATA[repository]]></category>
		<category><![CDATA[scrappers]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[star rating]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[thumb]]></category>
		<category><![CDATA[wordpress plugins]]></category>

		<guid isPermaLink="false">http://www.dev4press.com/?p=4589</guid>
		<description><![CDATA[WordPress Top Plugins is rather unique book published by Packt Publishing. Book is written by Brandon Corbin, and it contains description and examples of use for some of the most popular WordPress plugins in use with introduction chapter on working with plugins in Wordpress.]]></description>
				<content:encoded><![CDATA[<p>WordPress Top Plugins is rather unique book published by <a href="http://www.packtpub.com/" target="_blank">Packt Publishing</a>. Book is written by Brandon Corbin, and it contains description and examples of use for some of the most popular WordPress plugins in use with introduction chapter on working with plugins in WordPress.</p>
<blockquote><p>WordPress Top Plugins on <a href="https://www.packtpub.com/wordpress-top-plugins/book" target="_blank">Packt Publishing Website</a>.</p></blockquote>
<div id="attachment_4524" class="wp-caption alignright" style="width: 253px"><a title="WordPress Top Plugins" rel="lightbox" href="http://cdn.dev4press.com/wp-content/uploads/2011/01/1407OS_MockupCover.jpg"><img class="size-medium wp-image-4524" title="WordPress Top Plugins" src="http://cdn.dev4press.com/wp-content/uploads/2011/01/1407OS_MockupCover-243x300.jpg" alt="WordPress Top Plugins" width="243" height="300" /></a><p class="wp-caption-text">WordPress Top Plugins</p></div>
<h3>Book Contents</h3>
<p>First chapter deals with plugin basics including searching for and installing the plugins from WordPress.org plugins repository both auto install through WordPress interface and manual installing over FTP. This is followed by information on updating the plugins and troubleshooting common problems.</p>
<p>Plugins are divided into chapters according to plugins category and usage. First category is for content generating plugins and it starts with my own GD Star Rating plugin and some practical advises on changing thumb/star rating display. Gallery, tags, and other content plugins, forms and content scrappers are part of this chapter.</p>
<p>Next two chapters are for sharing content and style plugins, and here I have found several great plugins I never tried before. Overall, very good choice of plugins. Next chapter focuses on BuddyPress: setting the plugin, specific themes and plugins.</p>
<p>E-commerce plugins are next, followed by user related plugins. Security, maintenance and administration plugins end this book.</p>
<h3>Verdict</h3>
<p>For the most part, choice of plugins is good, and as I said, I have found myself several plugin new too me that I will surely try and use in my projects. Content for each plugin ranges from simple description to solutions for some common problems with that specific plugin. This is really handy for some complex plugins like CForms or some of the e-commerce solutions.</p>
<p>All plugins in the book are free, no premium/commercial plugins are included, and that is the something that such book really needs. Also, there are no SEO plugins in the book, and that is really strange decision not to include them. Last chapters on maintenance and security are missing some important plugins and on the other hand included are plugins that don&#8217;t even work with most WordPress versions, and are long time outdate. My own GD Press Tools Lite plugin is missing, and compared to most other plugins included, it&#8217;s much easier to use and more powerful.</p>
<p>But, even with the few problems, this is very useful book for WordPress beginners and even experienced users can find it interesting and find some interesting plugins inside.</p>
<h3>Buy the book</h3>
<p>You can get both PDF and print edition of this book from <a href="https://www.packtpub.com/wordpress-top-plugins/book" target="_blank">Packt</a> directly, or you can buy print edition from the <a href="http://my.gdragon.info/asin/us/1849511403/product" target="_blank">Amazon</a>.</p>
<h3><span style="background-color: #ff0000; color: #ffffff;"> Win a free copy of this book </span></h3>
<p>I would like to say thanks to Packt Publishing for providing me with a copy of this book for this review, and also giving one more copy of the book for one lucky reader. Starting today, for the next <strong>10 days</strong> you have a chance to win this book by leaving a comment or sending the tweet about this review. On Monday, January 24 at 14:00 CET I will announce the winner that will be picked up randomly from all comments and tweets:</p>
<ol>
<li>Leave a comment here and talk about jQuery, or</li>
<li>Tweet about this review follow and include <strong>@milangd</strong> in the tweet</li>
</ol>
<p>Lucky winner is getting PDF version <strong>WordPress Top Plugins </strong>from <a href="http://www.packtpub.com/" target="_blank">Packt Publishing</a>.</p>
<h4><span style="background-color: #ff0000; color: #ffffff;"> Giveaway completed </span></h4>
<p>Winner of PDF version of the book WordPress Top Plugins is <a href="http://twitter.com/NiceThai"><strong>@NiceThai</strong></a>. Congratulations!</p>
<script src="http://feeds.feedburner.com/~s/adsense@gdragon.info?i=http://www.dev4press.com/2011/blog/reviews/wordpress-top-plugins/" type="text/javascript" charset="utf-8"></script>]]></content:encoded>
			<wfw:commentRss>http://www.dev4press.com/2011/blog/reviews/wordpress-top-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Modded plugin: Headspace2</title>
		<link>http://www.dev4press.com/2010/blog/development/modded-plugin-headspace2/</link>
		<comments>http://www.dev4press.com/2010/blog/development/modded-plugin-headspace2/#comments</comments>
		<pubDate>Tue, 07 Sep 2010 11:23:18 +0000</pubDate>
		<dc:creator>MillaN</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[confusion]]></category>
		<category><![CDATA[custom tags]]></category>
		<category><![CDATA[elements]]></category>
		<category><![CDATA[headspace]]></category>
		<category><![CDATA[lot]]></category>
		<category><![CDATA[modded]]></category>
		<category><![CDATA[new features]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[taxonomies]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.dev4press.com/?p=2973</guid>
		<description><![CDATA[Headspace2 is great plugin for SEO. I prefer it much over other solutions like All-In-One SEO. But, problem with it is slow development and problems with WP3, unneeded features while missing features I need for my websites. So, I decided to work on my own version.]]></description>
				<content:encoded><![CDATA[<p>Headspace2 is great plugin for SEO. I prefer it much over other solutions like All-In-One SEO. But, problem with it is slow development and problems with WP3, unneeded features while missing features I need for my websites. So, I decided to work on my own version.</p>
<p>To avoid confusion with original plugin, my version is renamed to <strong>gdHeadSpace4</strong>. You can find it on the <a href="http://www.dev4press.com/free-downloads/"><strong>Free Downloads</strong></a> page, in the modded plugins section. New home page for this plugin is at the bottom of this post.</p>
<p>Plugin has a lot of differences from original. I removed some of the features because they were conflicted with some of my plugins (tags on the post edit panels and few other things). Plugin panels are a bit reorganized, icons changed, annoying support pages removed. Also, I removed annoying comments with license on top of each file, changed code layout to better fit to my editor (NetBeans). Several other obsolete modules, code that was causing problem on dashboard is also removed.</p>
<p>There are some new tags to be used for SEO elements, custom post types and custom taxonomies supported properly, I added filters allowing expanding of tags with custom tags. More changes will come as I need the make changes or find more problems. This is plugin version I am developing for myself, and I will not take &#8216;features requests&#8217;, but I will improve plugin from time to time and make it compatible with both WordPress and my plugins. If you find this version useful, please use it, if not try original version or some other SEO plugin.</p>
<p>Please, test new features and report problems in the forum or in comments.</p>
<blockquote><p><strong>gdHeadspace4</strong>:<br />
<a href="http://www.dev4press.com/plugins/gd-headspace4/">http://www.dev4press.com/plugins/gd-headspace4/</a><br />
<strong>Original Headspace2</strong>:<br />
<a href="http://wordpress.org/extend/plugins/headspace2/">http://wordpress.org/extend/plugins/headspace2/</a></p></blockquote>
<script src="http://feeds.feedburner.com/~s/adsense@gdragon.info?i=http://www.dev4press.com/2010/blog/development/modded-plugin-headspace2/" type="text/javascript" charset="utf-8"></script>]]></content:encoded>
			<wfw:commentRss>http://www.dev4press.com/2010/blog/development/modded-plugin-headspace2/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>xScape Framework: Preview of features list</title>
		<link>http://www.dev4press.com/2010/blog/themes-news/xscape-framework-preview-of-features-list/</link>
		<comments>http://www.dev4press.com/2010/blog/themes-news/xscape-framework-preview-of-features-list/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 23:13:52 +0000</pubDate>
		<dc:creator>MillaN</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[basic tools]]></category>
		<category><![CDATA[cached data]]></category>
		<category><![CDATA[comments forms]]></category>
		<category><![CDATA[customization options]]></category>
		<category><![CDATA[data export]]></category>
		<category><![CDATA[developer edition]]></category>
		<category><![CDATA[free themes]]></category>
		<category><![CDATA[menu designer]]></category>
		<category><![CDATA[meta tags]]></category>
		<category><![CDATA[Module]]></category>
		<category><![CDATA[premium]]></category>
		<category><![CDATA[pro]]></category>
		<category><![CDATA[release features]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[share this]]></category>
		<category><![CDATA[sidebars]]></category>
		<category><![CDATA[social links]]></category>
		<category><![CDATA[star rating]]></category>
		<category><![CDATA[statuses]]></category>
		<category><![CDATA[template support]]></category>
		<category><![CDATA[theme templates]]></category>
		<category><![CDATA[translate this]]></category>
		<category><![CDATA[visual elements]]></category>
		<category><![CDATA[widgets]]></category>
		<category><![CDATA[xScape]]></category>

		<guid isPermaLink="false">http://www.dev4press.com/?p=1335</guid>
		<description><![CDATA[First theme and xScape framework are now completed. Second theme is in development, and is expected that another week will be needed to complete it. But, current work will be available before then and many changes are to be expected on Dev4Press before themes became available.]]></description>
				<content:encoded><![CDATA[<p>First theme and xScape framework are now completed. Second theme is in development, and is expected that another week will be needed to complete it. But, current work will be available before then and many changes are to be expected on Dev4Press before themes became available.</p>
<p>Here is the list of features in xScape theme framework that will be part of the initial 1.0.0 release. Features marked as PRO will not be available with free themes:</p>
<ul>
<li>Settings panels: for theme and framework settings, ajax powered and easy to use</li>
<li>Basic Tools panel: clear cached data, export and import of settings,</li>
<li><strong>PRO</strong>: Extra Tools panel: existing images custom fields conversion</li>
<li><strong>PRO</strong>: Layouts panel: advanced management for theme templates and sidebars</li>
<li>Menus panel: advanced menu designer with many customization options</li>
<li>SEO controls: search engine optimization for titles, meta tags and much more</li>
<li><strong>GD Star Rating</strong>: direct integration for standard and multi ratings into comments for review websites</li>
<li>jQuery powered:Â breadcrumbs,Â comments forms validation, contact form, featured posts slider</li>
<li>Visual elements: paged navigation for posts and comments, author and related posts blocks</li>
<li>WP Integration: post and page panel integration for additional options and images upload</li>
<li>Custom Taxonomies: template support with page integration and navigation</li>
<li>Extra Templates: twitter statuses, archives and website site-map</li>
<li>Actions &amp; Filters: expanding theme using actions and filters, same way the WordPress works</li>
</ul>
<p>Additional elements included with framework include widgets and modules. Modules are similar to WordPress plugins, but integrated into the theme with own settings and controls:</p>
<ul>
<li>Widgets: Flickr, Twitter, Recent Posts, Single Ad, Networks Social Links</li>
<li><strong>PRO</strong>: Modules: Share This (Submit to social websites), Translate This (Google Translate support)</li>
</ul>
<p>As for the requirements, theme will require PHP5, and will work with different versions of WordPress:</p>
<ul>
<li>WordPress 2.8.x</li>
<li>WordPress 2.9.x</li>
<li>WordPressMU 2.9.x</li>
<li>WordPress 3</li>
</ul>
<p>Free themes will have no support (apart from reporting and fixing bugs and access to some basic tutorials). Pro themes will be sold for one time fee that will include premium support (forum, premium tutorials), critical and regular updates.</p>
<p>For Pro theme, there will be two different editions: Standard and Developer. Developer edition will include Photoshop PSD files and 2 email support tickets. Single Pro theme will cost <strong>35 EUR (46 USD)</strong> for Standard edition and <strong>55 EUR (75 USD)</strong> for Developer edition. When you purchase 3 same editions themes, you get one additional theme for free. Once the number of themes is increased, we will offer subscription based model (both standard and developer) to cover all themes and add some additional support elements like SVN access and more email support tickets.</p>
<p>In the next 24 hours, GD Star Rating website will be the first website to get new baseScape theme. By the end of this week, WPMU website will be activated on <strong>xscape.info</strong> domain where everyone can sign up for a 24 hours blog that will allow you to test drive each theme before deciding if you want to buy it.</p>
<p>Stay tuned and feel free to ask anything you want to know more. xScape will be unleashed very soon&#8230;</p>
<script src="http://feeds.feedburner.com/~s/adsense@gdragon.info?i=http://www.dev4press.com/2010/blog/themes-news/xscape-framework-preview-of-features-list/" type="text/javascript" charset="utf-8"></script>]]></content:encoded>
			<wfw:commentRss>http://www.dev4press.com/2010/blog/themes-news/xscape-framework-preview-of-features-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk: enhanced
Content Delivery Network via cdn.dev4press.com

 Served from: www.dev4press.com @ 2013-05-22 05:39:54 by W3 Total Cache -->