<?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>Developer Code book &#187; Wordpress Plugins</title> <atom:link href="http://wordpressapi.com/category/wordpress/wordpress-plugins-wordpress/feed/" rel="self" type="application/rss+xml" /><link>http://wordpressapi.com</link> <description>Wordpressapi.com is focused on Wordpress API, wordpress news, wordpress themes, wordpress plugins, wordpress tips, wordpress tutorials, wordpress design wordpress templates, wordpress breaking news and web-development. We deliver useful information about wordpress,  wordpress latest trends and wordpress techniques, wordpress useful ideas, wordpress innovative approaches and wordpress tools. Social Media news blog covering cool new websites and social networks: Facebook, Google, Twitter, MySpace and YouTube.  The latest web technology news, via RSS daily.</description> <lastBuildDate>Thu, 09 Sep 2010 10:36:02 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.0.1</generator> <item><title>Create tables with wordpress plugin</title><link>http://wordpressapi.com/2010/08/19/create-tables-wordpress-plugin/</link> <comments>http://wordpressapi.com/2010/08/19/create-tables-wordpress-plugin/#comments</comments> <pubDate>Thu, 19 Aug 2010 16:28:16 +0000</pubDate> <dc:creator>Sony</dc:creator> <category><![CDATA[Wordpress Plugins]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[wordpress api]]></category> <category><![CDATA[wordpress tutorials]]></category> <category><![CDATA[wordpress plugin]]></category><guid
isPermaLink="false">http://wordpressapi.com/?p=5195</guid> <description><![CDATA[If you are making the wordpress plugin and in wordpress plugin many times we need to create new tables. In this article I will show you how easily we can create the wordpress plugin. Using following code you can create the table in wordpress database. global $jal_db_version; $jal_db_version = &#34;1.0&#34;; function jal_install () { global.....]]></description> <content:encoded><![CDATA[<p><img
class="alignnone size-full wp-image-5196" title="wordpress-database" src="http://wordpressapi.com/files/wordpress-database.jpg" alt="" width="259" height="194" /><br
/> If you are making the wordpress plugin and in wordpress plugin many times we need to create new tables. In this article I will show you how easily we can create the wordpress plugin.<br
/> Using following code you can create the table in wordpress database.</p><pre class="brush: php;">
global $jal_db_version;
$jal_db_version = &quot;1.0&quot;;

function jal_install () {
   global $wpdb;
   global $jal_db_version;

   $table_name = $wpdb-&gt;prefix . &quot;liveshoutbox&quot;;
   if($wpdb-&gt;get_var(&quot;show tables like '$table_name'&quot;) != $table_name) {

      $sql = &quot;CREATE TABLE &quot; . $table_name . &quot; (
	  id mediumint(9) NOT NULL AUTO_INCREMENT,
	  time bigint(11) DEFAULT '0' NOT NULL,
	  name tinytext NOT NULL,
	  text text NOT NULL,
	  url VARCHAR(55) NOT NULL,
	  UNIQUE KEY id (id)
	);&quot;;

      require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
      dbDelta($sql);

      $rows_affected = $wpdb-&gt;insert( $table_name, array( 'time' =&gt; current_time('mysql'), 'name' =&gt; $welcome_name, 'text' =&gt; $welcome_text ) );

      add_option(&quot;jal_db_version&quot;, $jal_db_version);

   }
}
</pre><p>Now that we have the initialization function defined, we want to make sure that WordPress calls this function when the plugin is activated by a WordPress administrator. To do that, we will use the activate_ action hook. If your plugin file is wp-content/plugins/plugindir/pluginfile.php, you&#8217;ll add the following line to the main body of your plugin:</p><pre class="brush: php;">
register_activation_hook(__FILE__,'jal_install');
</pre>]]></content:encoded> <wfw:commentRss>http://wordpressapi.com/2010/08/19/create-tables-wordpress-plugin/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>How to set the wordpress post excerpt length to limited characters</title><link>http://wordpressapi.com/2010/08/11/set-wordpress-post-excerpt-length-limited-characters/</link> <comments>http://wordpressapi.com/2010/08/11/set-wordpress-post-excerpt-length-limited-characters/#comments</comments> <pubDate>Wed, 11 Aug 2010 17:34:00 +0000</pubDate> <dc:creator>Sony</dc:creator> <category><![CDATA[Wordpress Plugins]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[wordpress api]]></category> <category><![CDATA[wordpress tutorials]]></category> <category><![CDATA[wordpress plugin]]></category> <category><![CDATA[wordpress tips]]></category> <category><![CDATA[wp plugin]]></category><guid
isPermaLink="false">http://wordpressapi.com/?p=5138</guid> <description><![CDATA[In wordpress 3.0 limiting the excerpt is very easy. the_excerpt function is very useful and helpful in wordpress.In many wordpress theme we used the excerpt. Many times we need to control excerpt characters as per our wordpress theme requirement. You can easily change the excerpt length using wordpress hook.]]></description> <content:encoded><![CDATA[<p><img
class="alignnone size-full wp-image-5139" title="wordpress-excerpt" src="http://wordpressapi.com/files/wordpress-excerpt.png" alt="" width="469" height="144" /></p><p>In wordpress 3.0 limiting the excerpt is very easy. the_excerpt function is very useful and helpful in wordpress.</p><p>In many wordpress theme we used the excerpt. Many times we need to control excerpt characters as per our wordpress theme requirement. You can easily change the excerpt length using wordpress hook.</p><p>You just need to open your functions.php file from your wordpress theme folder and put following code in that.</p><pre class="brush: php;">
function change_excerpt_length($length) {
    return 100;
}
add_filter('excerpt_length', 'change_excerpt_length');
</pre><p>This filter is used by <a
title="Function Reference/wp trim excerpt" href="http://codex.wordpress.org/Function_Reference/wp_trim_excerpt">wp_trim_excerpt()</a> function.  By default the excerpt length is set to return 55 words.</p> ]]></content:encoded> <wfw:commentRss>http://wordpressapi.com/2010/08/11/set-wordpress-post-excerpt-length-limited-characters/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>register activation hook using in wordpress plugin</title><link>http://wordpressapi.com/2010/08/10/register-activation-hook-using-in-wordpress-plugin/</link> <comments>http://wordpressapi.com/2010/08/10/register-activation-hook-using-in-wordpress-plugin/#comments</comments> <pubDate>Tue, 10 Aug 2010 19:03:23 +0000</pubDate> <dc:creator>Sony</dc:creator> <category><![CDATA[Wordpress Plugins]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[wordpress api]]></category> <category><![CDATA[wordpress tutorials]]></category> <category><![CDATA[plugin]]></category> <category><![CDATA[wordpress plugin]]></category> <category><![CDATA[wp plugin]]></category><guid
isPermaLink="false">http://wordpressapi.com/?p=5119</guid> <description><![CDATA[register_activation_hook is very important function for creating the wordpress plugin. The function register_activation_hook registers a plugin function to be run when the plugin is activated. You can use the register_activation_hook as follows: &#60;?php register_activation_hook($file, $function); ?&#62; If you can going to create the wordpress simple plugin then this function is very useful. this function you.....]]></description> <content:encoded><![CDATA[<p><img
class="alignnone size-full wp-image-5120" title="wordpress-api-for-plugin" src="http://wordpressapi.com/files/wordpress-api-for-plugin.png" alt="" width="350" height="169" /><br
/> register_activation_hook is very important function for creating the wordpress plugin. The function register_activation_hook registers a plugin function to be run when the plugin is activated.<br
/> You can use the register_activation_hook as follows:</p><pre class="brush: php;">
&lt;?php register_activation_hook($file, $function); ?&gt;
</pre><p>If you can going to create the wordpress simple plugin then this function is very useful. this function you can use as follows in files.<br
/> If you have a function called myplugin_activate() in the main plugin file at either</p><p>* wp-content/plugins/myplugin.php or<br
/> * wp-content/plugins/myplugin/myplugin.php</p><p>you can use code as follows:</p><pre class="brush: php;">
global $myvar;
$myvar='whatever';

function myplugin_activate() {
  global $myvar;
  echo $myvar; // this will be 'whatever'
}

register_activation_hook( __FILE__, 'myplugin_activate' );
</pre><p>1. register_activation_hook() must be called from the main plugin file &#8211; the one that has &#8220;Plugin Name: &#8230;&#8221; directive.<br
/> 2. Your hook function must be in the same file as well. From that function it is ok to call other functions defined in other files.<br
/> 3. Doing echo &#8220;My hook called!&#8221;; &#8211; does not work from it. So this is not a good way to judge whether it working or not.<br
/> 4. Your global variables must be explicitly declared as global for them to be accessed from inside of my_activation_hook().</p><p>Check the sample wordpress plugin code.</p><pre class="brush: php;">
&lt;?php
/*
Plugin Name: A Test
Description: A Test
*/

require_once (dirname(__FILE__) . '/my_other_file.php');

// This code *will not* work. Activation hook function must be defined in the main plugin file.
//    register_activation_hook (dirname(__FILE__) . '/my_other_file.php', 'my_other_function');

// This code will work.
register_activation_hook (__FILE__, 'test_activated');

// This is correct way to declare/access globals.
global $some_var;    // globals must be declared explicitly. Without this you will not be able to access '$some_var' from within 'test_activated()' function.
$some_var = 'hey';

//===========================================================================
function test_activated ()
{
   global $some_var; // Now it will be 'hey'.

   // This function is defined in 'my_other_file.php'
   my_other_function ();

   // This will not work, so don't try. If you need logging write something in temporary log file in here via fopen/fwrite.
	// If you want to quickly test if your activation hook works - put exit() into it. At least you'll see error during activation.
   echo 'test_activated called!';
}
//===========================================================================

?&gt;
</pre><p>The function register_deactivation_hook  registers a plugin function to be run when the plugin is deactivated.<br
/> following function will deactivate your plugin</p><pre class="brush: php;">
register_deactivation_hook( __FILE__, 'myplugin_deactivate' );
</pre>]]></content:encoded> <wfw:commentRss>http://wordpressapi.com/2010/08/10/register-activation-hook-using-in-wordpress-plugin/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Dont use WP-Robot plugin ever in WordPress blog</title><link>http://wordpressapi.com/2010/08/07/dont-wp-robot-plugin-wordpress-blog/</link> <comments>http://wordpressapi.com/2010/08/07/dont-wp-robot-plugin-wordpress-blog/#comments</comments> <pubDate>Sat, 07 Aug 2010 04:57:05 +0000</pubDate> <dc:creator>Sony</dc:creator> <category><![CDATA[Wordpress Plugins]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[wordpress news]]></category> <category><![CDATA[wordpress tip]]></category> <category><![CDATA[worpress plugin]]></category> <category><![CDATA[wp plugin]]></category> <category><![CDATA[wp-robot]]></category><guid
isPermaLink="false">http://wordpressapi.com/?p=5028</guid> <description><![CDATA[First reason I must say that google does not like the wp-robot wordpress plugin. Unique and good quality contents are what you need to RANK. What is Wp-Robot? WP Robot is an autoblogging plugin for WordPress weblogs. It will enable the user to create targeted blog posts on any topic without having to write anything......]]></description> <content:encoded><![CDATA[<p><img
class="alignnone size-full wp-image-5029" title="wp-robot-plugin" src="http://wordpressapi.com/files/wp-robot-plugin.jpg" alt="" width="275" height="316" /></p><p>First reason I must say that google does not like the wp-robot wordpress plugin. Unique and good quality contents are what you need to RANK.</p><h2>What is Wp-Robot?</h2><p>WP Robot is an autoblogging plugin for WordPress weblogs. It will enable the user to create targeted blog posts on any topic without having to write anything. Blogs will be set on auto-pilot and fresh content will be entered on a schedule that the user specifies and the posts can be on any topic and will be targeted to any keyword desired. Content can be taken from any source including Amazon, Ebay, ClickBank, and YouTube.</p><p>Many People think they will earn money easily from this plugin. But that is not true. If you use wp-robot plugin for month you will get to know. Not single article is indexed by google.<br
/> Because Google will check the article title and content and That content is duplicate then google never index that page.<br
/> Your articles will never comes in picture. It might be possible in that blog you will right the your own articles but still due to wp-robot google will never index your article.<br
/> Google might ban your domain name due to wp-robots. Earlier this is happened with some domain names due to wp-robots.<br
/> So My advice to all bloggers dont use wp-robots ever.</p> ]]></content:encoded> <wfw:commentRss>http://wordpressapi.com/2010/08/07/dont-wp-robot-plugin-wordpress-blog/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>How to add new User types in WordPress site</title><link>http://wordpressapi.com/2010/08/05/add-user-types-wordpress-site/</link> <comments>http://wordpressapi.com/2010/08/05/add-user-types-wordpress-site/#comments</comments> <pubDate>Thu, 05 Aug 2010 18:49:17 +0000</pubDate> <dc:creator>Sony</dc:creator> <category><![CDATA[Wordpress Plugins]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[wordpress tutorials]]></category> <category><![CDATA[user role]]></category> <category><![CDATA[wordpdress plugin]]></category> <category><![CDATA[wp plugin]]></category><guid
isPermaLink="false">http://wordpressapi.com/?p=5025</guid> <description><![CDATA[Adding and managing the New User types and role management in any CMS is very basic requirement of any CMS. In wordpress also we can create the multiple User types and manage there roles through admin panel. For managing the Role capabilities we need to include one wordpress plugin. This plugin is compatible upto wordpress.....]]></description> <content:encoded><![CDATA[<p><img
class="alignnone size-full wp-image-5026" title="user-role-ediror" src="http://wordpressapi.com/files/user-role-ediror.png" alt="" width="553" height="739" /></p><p>Adding and managing the New User types and role management in any CMS is very basic requirement of any CMS. In wordpress also we can create the multiple User types and manage there roles through admin panel.</p><p>For managing the Role capabilities we need to include one wordpress plugin. This plugin is compatible upto wordpress 3.0.1 and we can create multiple user roles and set user permissions through admin panel.</p><h2><a
href="http://wordpress.org/extend/plugins/user-role-editor/" target="_blank">User Role Editor</a></h2><p>User Role Editor WordPress plugin makes the role capabilities changing  easy. You can change any standard WordPress user role (except  administrator) with a few clicks. Just turn on check boxes of capabilities you wish to add to the selected  role and click &#8220;Update&#8221; button to save your changes. That&#8217;s done. In  case you made some unneccessary change you always have the &#8220;Reset&#8221;  button to restore roles state from the automatically made backup copy. Add new roles and customize its capabilities according to your needs.  Unnecessary self-made role can be deleted if there are no users whome  such role is assigned. Role assigned every new created user by default can be changed too.</p> ]]></content:encoded> <wfw:commentRss>http://wordpressapi.com/2010/08/05/add-user-types-wordpress-site/feed/</wfw:commentRss> <slash:comments>10</slash:comments> </item> <item><title>How can user delete there own account from WordPress site</title><link>http://wordpressapi.com/2010/08/05/user-delete-account-wordpress-site/</link> <comments>http://wordpressapi.com/2010/08/05/user-delete-account-wordpress-site/#comments</comments> <pubDate>Thu, 05 Aug 2010 18:25:32 +0000</pubDate> <dc:creator>Sony</dc:creator> <category><![CDATA[Wordpress Plugins]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[wordpress api]]></category> <category><![CDATA[wordpress plugin]]></category> <category><![CDATA[wp plugin]]></category><guid
isPermaLink="false">http://wordpressapi.com/?p=5021</guid> <description><![CDATA[Creating, editing and deleting the user account is a very basic need of any CMS. We can easily allow to user to register there account in wordpress sites. We can use many wordpress plugins and create User profile and manage there profile. But in wordpress deleting the User from wordpress site is not easy. Here.....]]></description> <content:encoded><![CDATA[<p><img
class="alignnone size-full wp-image-5022" title="wordpress-user-delete" src="http://wordpressapi.com/files/wordpress-user-delete.jpg" alt="" width="241" height="154" /></p><p>Creating, editing and deleting the user account is a very basic need of any CMS. We can easily allow to user to register there account in wordpress sites. We can use many wordpress plugins and create User profile and manage there profile.</p><p>But in wordpress deleting the User from wordpress site is not easy. Here in this article I will tell how can we easily delete the user account without administrator permission.</p><p>Using following wordpress plugin we can achieve this functionality.</p><h2><a
href="http://wordpress.org/extend/plugins/user-self-delete/" target="_blank">User Self Delete</a></h2><p>This plugin will allow your users to delete their own account without  any need for interaction on the administrator&#8217;s behalf.</p><p>When a user wishes to delete their account, they are taken to a  confirmation page where they must enter the word &#8220;yes&#8221; in order for the  deletion to take place.  Once they type &#8220;yes&#8221; and press the delete  account button, they are redirected to the login page and they no longer  exist as a user on your site.</p> ]]></content:encoded> <wfw:commentRss>http://wordpressapi.com/2010/08/05/user-delete-account-wordpress-site/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>wordpress comments captcha plugin</title><link>http://wordpressapi.com/2010/08/04/wordpress-comments-captcha-plugin/</link> <comments>http://wordpressapi.com/2010/08/04/wordpress-comments-captcha-plugin/#comments</comments> <pubDate>Wed, 04 Aug 2010 18:21:00 +0000</pubDate> <dc:creator>Sony</dc:creator> <category><![CDATA[Wordpress Plugins]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[wordpress api]]></category> <category><![CDATA[plugin]]></category> <category><![CDATA[wordpress plugins]]></category> <category><![CDATA[wp plugin]]></category><guid
isPermaLink="false">http://wordpressapi.com/?p=5004</guid> <description><![CDATA[I got around 400 spam comments daily. Spam comments are increasing daily. when I got fed-up the these comments I deiced to use the Akismet plugin. But What I found with plugin is That plugin is good comments also putting into spam. I recomend to use the capcha plugin for protecting from spam comments. I.....]]></description> <content:encoded><![CDATA[<p><img
class="alignnone size-large wp-image-5005" title="recaptcha-example" src="http://wordpressapi.com/files/recaptcha-example-600x239.gif" alt="" width="600" height="239" /></p><p>I got around 400 spam comments daily. Spam comments are increasing daily. when I got fed-up the these comments I deiced to use the Akismet plugin.<br
/> But What I found with plugin is That plugin is good comments also putting into spam.<br
/> I recomend to use the capcha plugin for protecting from spam comments. I like the wp-recaptcha wordpress plugin and I recommend to use that plugin.</p><p>Here are some very nice wordpress capcha plugins for wordpress comments.</p><h2><a
href="http://wordpress.org/extend/plugins/wp-recaptcha/" target="_blank">WP-reCAPTCHA</a></h2><p>reCAPTCHA is an anti-spam method originating from Carnegie Mellon University which uses CAPTCHAs in a genius way. Instead of randomly generating useless characters which users grow tired of continuosly typing in, risking the possibility that spammers will eventually write sophisticated spam bots which use OCR libraries to read the characters, reCAPTCHA uses a different approach.</p><h2><a
href="http://wordpress.org/extend/plugins/raz-captcha/" target="_blank">Raz-Captcha</a></h2><p>Prevent registration spam and bots login by adding custom captcha tests in the registration page and/or login page</p><p>Featuring 5 different and customizable captcha algorithms with possibility to set your own random characters font, styles, colors background and more<br
/> For a working demo se login and register pages from the author home page</p><h2><a
href="http://wordpress.org/extend/plugins/simple-captcha/" target="_blank">Simple CAPTCHA</a></h2><p>A CAPTCHA for your comment system to prevent unwanted spams. Prevent automated spams by bots and most important naughty peoples. It&#8217;s simple and yet secure.</p><h2><a
href="http://wordpress.org/extend/plugins/wp-captcha-free/" target="_blank">WP Captcha-Free</a></h2><p>WP Captcha-Free blocks automated comment spam without resorting to CAPTCHAs. It does so by validating a hash based on time (and some other parameters) using AJAX when the form is posted. Comments posted via automated means will not have a hash or will have an expired hash and will be rejected. Unlike using a captcha, this does not place any burden on the commenter.</p><h2><a
href="http://wordpress.org/extend/plugins/captcha-godfather/" target="_blank">CAPTCHA-Godfather</a></h2><p>This plug-in protects the form for posting comments from spam by 4 ways; CAPTCHA code, Session ID (which is different from PHPSESSID), Timestamp, IP Address. Also allows the webmaster to choose between fonts.</p><h2><a
href="http://wordpress.org/extend/plugins/security-captcha/" target="_blank">Security Captcha</a></h2><p>Prevent registration spam and bots login by adding custom captcha tests in the registration page and/or login page</p><h2><a
href="http://wordpress.org/extend/plugins/si-captcha-for-wordpress/" target="_blank">SI CAPTCHA Anti-Spam</a></h2><p>Adds CAPTCHA anti-spam methods to WordPress on the comment form, registration form, login, or all. In order to post comments or register, users will have to type in the code shown on the image. This prevents spam from automated bots. Adds security. Works great with Akismet. Also is fully WP, WPMU, and BuddyPress compatible.</p> ]]></content:encoded> <wfw:commentRss>http://wordpressapi.com/2010/08/04/wordpress-comments-captcha-plugin/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>How to add pagination in wordpress</title><link>http://wordpressapi.com/2010/07/31/add-pagination-wordpress/</link> <comments>http://wordpressapi.com/2010/07/31/add-pagination-wordpress/#comments</comments> <pubDate>Sat, 31 Jul 2010 17:04:56 +0000</pubDate> <dc:creator>Sony</dc:creator> <category><![CDATA[Wordpress Plugins]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[wordpress tutorials]]></category> <category><![CDATA[plugin]]></category> <category><![CDATA[wordpress plugin]]></category> <category><![CDATA[wordpress turotials]]></category> <category><![CDATA[wp]]></category> <category><![CDATA[wp plugin]]></category><guid
isPermaLink="false">http://wordpressapi.com/?p=4966</guid> <description><![CDATA[Many times adding the custom pagination in wordpress blog is very important. In this article I will show you how to add the simple pagination in wordpress. You need to open the your index.php file from wordpress theme and put following code in that file. &#60;div class=&#34;navigation&#34;&#62; &#60;div class=&#34;alignleft&#34;&#62;&#60;? next_posts_link('&#38;laquo; Previous') ?&#62; &#60;/div&#62; &#60;div class=&#34;alignright&#34;&#62;&#60;?.....]]></description> <content:encoded><![CDATA[<p>Many times adding the custom pagination in wordpress blog is very important. In this article I will show you how to add the simple pagination in wordpress.</p><p>You need to open the your index.php file from wordpress theme and put following code in that file.</p><pre class="brush: php;">

&lt;div class=&quot;navigation&quot;&gt;
  &lt;div class=&quot;alignleft&quot;&gt;&lt;? next_posts_link('&amp;laquo; Previous') ?&gt;
  &lt;/div&gt;
  &lt;div class=&quot;alignright&quot;&gt;&lt;? previous_posts_link('Next') ?&gt;
  &lt;/div&gt;
&lt;/div&gt;
</pre><p>If you want the pagination in single post then you can use the following code:</p><pre class="brush: php;">
&lt;?php next_posts_link($label , $max_pages); ?&gt;
&lt;?php prev_posts_link($label , $max_pages); ?&gt;
</pre><p>There are some very nice wordpress plugin available for wordpress pagination.<br
/> <a
href="http://wordpress.org/extend/plugins/wp-pagenavi/">WP-PageNavi</a></p><p><img
class="alignnone size-full wp-image-4967" title="wp-pagenavi" src="http://wordpressapi.com/files/wp-pagenavi.png" alt="" width="368" height="159" /></p><p>PageNavi wordpress plugin is really nice. I personally like this plugin so much. With this plugin you can apply your custom css also.</p><h4>Changing the CSS</h4><p>If you need to configure the CSS style of WP-PageNavi, you can copy  the <code>pagenavi-css.css</code> file from the plugin directory to your  theme&#8217;s directory and make your modifications there. This way, you  won&#8217;t lose your changes when you update the plugin.</p><p>Alternatively, you can uncheck the &#8220;Use pagenavi.css?&#8221; option from  the settings page and add the styles to your theme&#8217;s style.css file  directly.</p> ]]></content:encoded> <wfw:commentRss>http://wordpressapi.com/2010/07/31/add-pagination-wordpress/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>how to insert the php code in wordpress post</title><link>http://wordpressapi.com/2010/07/31/insert-php-code-wordpress-post/</link> <comments>http://wordpressapi.com/2010/07/31/insert-php-code-wordpress-post/#comments</comments> <pubDate>Sat, 31 Jul 2010 15:26:07 +0000</pubDate> <dc:creator>Sony</dc:creator> <category><![CDATA[Wordpress Plugins]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[plugin]]></category> <category><![CDATA[wp]]></category> <category><![CDATA[wp plugin]]></category><guid
isPermaLink="false">http://wordpressapi.com/?p=4962</guid> <description><![CDATA[Some time we need to execute and use the php code in wordpress post and page. There is solution for inserting the php code in to wordpress post. I found very useful wordpress plugin for that. But my advise is don&#8217;t use this plugin ever try to put your php code as possible in wordpress.....]]></description> <content:encoded><![CDATA[<p><img
class="alignnone size-full wp-image-4963" title="php_code" src="http://wordpressapi.com/files/php_code.jpg" alt="" width="500" height="322" /></p><p>Some time we need to execute and use the php code in wordpress post and page. There is solution for inserting the php code in to wordpress post.</p><p>I found very useful wordpress plugin for that. But my advise is don&#8217;t use this plugin ever try to put your php code as possible in wordpress theme.</p><h2><a
href="http://wordpress.org/extend/plugins/exec-php/" target="_blank">Exec-PHP</a></h2><p>The Exec-PHP plugin executes PHP code in posts, pages and text  widgets.</p><p>Features:</p><ul><li>Executes PHP code in the excerpt and the content portion of your  posts and pages</li><li>Configurable execution of PHP code in text widgets (for WordPress  2.2 or higher)</li><li>Write PHP code in familiar syntax, eg. <code>&lt;?php ... ?&gt;</code></li><li>Works in your newsfeeds</li><li>Information about which users are allowed to execute PHP with the  current security settings (for WordPress 2.1 or higher)</li><li>Configurable user warnings for inappropriate blog and user settings  (for WordPress 2.1 or higher)</li><li>Restrict execution of PHP code in posts and pages to certain users  by using roles and capabilities</li><li>Update notifications through the &#8216;Plugins&#8217; menu in WordPress if a  new version of the Exec-PHP plugin is available (for WordPress 2.3 or  higher)</li><li>Internationalization support (english and german included, many more  available)</li><li>Comes with documentation</li></ul><h2><a
href="http://wordpress.org/extend/plugins/inline-php/" target="_blank">Inline PHP</a></h2><p>The plugin can execute php string in posts/pages, and display the output  as the contents of posts/pages. Just quote what you want to execute in <code>&lt;exec&gt;...&lt;/exec&gt;</code> or <code>[exec]...[/exec]</code> tag.</p><p>You can put the php code in post following way.</p><pre class="brush: php;">
&lt;exec&gt;
       $filestr = file_get_contents('http://www.seocompany.ca/pagerank/page-rank-update-list.html');
       if (preg_match('/&lt;p&gt;.*&lt;\/p&gt;/ums', $filestr, $matches)){
           echo str_replace(&quot;&lt;p&gt;&lt;a href=\&quot;#page-rank-update-list-history\&quot;&gt;Top of Page Rank Update List History&lt;/a&gt;&lt;/p&gt;&quot;, &quot;&quot;, str_replace(&quot;&lt;table width=\&quot;65%\&quot;&gt;&quot;, &quot;&lt;table width=\&quot;100%\&quot;&gt;&quot;, $matches[0]));
       }
   &lt;/exec&gt;
</pre>]]></content:encoded> <wfw:commentRss>http://wordpressapi.com/2010/07/31/insert-php-code-wordpress-post/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>code syntax highlighting through wordpress plugin</title><link>http://wordpressapi.com/2010/07/31/code-syntax-highlighting-wordpress-plugin/</link> <comments>http://wordpressapi.com/2010/07/31/code-syntax-highlighting-wordpress-plugin/#comments</comments> <pubDate>Sat, 31 Jul 2010 13:22:10 +0000</pubDate> <dc:creator>Sony</dc:creator> <category><![CDATA[Wordpress Plugins]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[wordpress tutorials]]></category> <category><![CDATA[code]]></category> <category><![CDATA[plugin]]></category> <category><![CDATA[wordpress plugin]]></category> <category><![CDATA[wp plugin]]></category><guid
isPermaLink="false">http://wordpressapi.com/?p=4948</guid> <description><![CDATA[When ever we write some code in post. That code need to visible very easily. There are some useful wordpress plugins for highlighting the code in wordpress post. While WordPress.com doesn’t allow you to use potentially dangerous code on your blog, there is a way to post source code for viewing. We have created a.....]]></description> <content:encoded><![CDATA[<p><img
class="alignnone size-full wp-image-4949" title="wp-syntax" src="http://wordpressapi.com/files/wp-syntax.png" alt="" width="377" height="144" /></p><p>When ever we write some code in post. That code need to visible very easily. There are some useful wordpress plugins for highlighting the code in wordpress post.</p><p>While WordPress.com doesn’t allow you to use potentially dangerous code  on your blog, there is a way to post source code for viewing. We have  created a shortcode you can wrap around source code that preserves its  formatting and even provides syntax highlighting for certain languages,  like so:</p><p>To accomplish the above, just wrap your code in these tags:</p><p><code><pre class="brush: css;">
 your code here
 </pre><p></code></p><p>The language parameter controls how the code is syntax highlighted.  The following languages are supported:</p><ul><li>actionscript3</li><li>bash</li><li>coldfusion</li><li>cpp</li><li>csharp</li><li>css</li><li>delphi</li><li>erlang</li><li>fsharp</li><li>diff</li><li>groovy</li><li>javascript</li><li>java</li><li>javafx</li><li>matlab (keywords only)</li><li>objc</li><li>perl</li><li>php</li><li>text</li><li>powershell</li><li>python</li><li>ruby</li><li>scala</li><li>sql</li><li>vb</li><li>xml</li></ul><p>If the language parameter is not set, it will default to “text” (no  syntax highlighting).</p><p>Code in between the source code tags will automatically be encoded  for display, you don’t need to worry about HTML entities or anything.</p><p>There are some free plugins also helpful for syntax highlighting.  I specially like the SyntaxHighlighter Evolved wordpress plugin. SyntaxHighlighter Evolved allows you to easily post syntax-highlighted  code to your site without loosing it&#8217;s formatting or making any manual  changes.</p><p>You can download this plugin form here:</p><h2><a
href="http://wordpress.org/extend/plugins/syntaxhighlighter/" target="_blank">SyntaxHighlighter Evolved</a></h2><p>There is another plugin for syntax highlighting which also really nice.</p><p>WP-Syntax provides clean syntax highlighting using <a
href="http://qbnz.com/highlighter/">GeSHi</a> &#8212; supporting a wide  range of popular languages.  It supports highlighting with or without line numbers and maintains formatting while copying snippets of  code from the browser.</p><p>It avoids conflicts with other 3rd party plugins by running an early pre-filter and a late post-filter that substitutes and pulls the code  snippets out first and then pushes them back in with highlighting at the end.   The result is source code formatted and highlighted the way you intended.</p><p>You can download the this from here:</p><h2><a
href="http://wordpress.org/extend/plugins/wp-syntax/" target="_blank">WP-Syntax</a></h2> ]]></content:encoded> <wfw:commentRss>http://wordpressapi.com/2010/07/31/code-syntax-highlighting-wordpress-plugin/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>How to Optimize Your WordPress Database</title><link>http://wordpressapi.com/2010/07/25/optimize-wordpress-database/</link> <comments>http://wordpressapi.com/2010/07/25/optimize-wordpress-database/#comments</comments> <pubDate>Sun, 25 Jul 2010 07:29:13 +0000</pubDate> <dc:creator>Sony</dc:creator> <category><![CDATA[Wordpress Plugins]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[wordpress hacks]]></category> <category><![CDATA[plugins]]></category> <category><![CDATA[wordpress tips]]></category> <category><![CDATA[wordpress tutorials]]></category> <category><![CDATA[wp plugin]]></category><guid
isPermaLink="false">http://wordpressapi.com/?p=4904</guid> <description><![CDATA[When we are using the wordpress sites then we need to clean the database always. If your site is having more than 500 articles then you need to worry about server performance. Mysql load will impact your server.  Many people are suggesting to use the WP-DBManager wordpress plugin. But forgot about plugin feature. That plugin.....]]></description> <content:encoded><![CDATA[<p>When we are using the wordpress sites then we need to clean the database always. If your site is having more than 500 articles then you need to worry about server performance.</p><p>Mysql load will impact your server.  Many people are suggesting to use the WP-DBManager wordpress plugin. But forgot about plugin feature. That plugin specially made for database backup and managing the tables.</p><p>If you want to optimize your wordpress database then you need to use wp-optimize wordpress plugin. I found that is only plugin is helpful for really keep optimize your wordpress database.</p><p>I used that plugin. Before using that plugin my mysql database size was 135mb. After using that wp-optimize plugin features database size was 4mb. That means my database really really optimized.</p><p>My sites performance was also improved.</p><p>What is features of wp-optimize?</p><ul><li>Remove the existing wordpress post revisions</li><li>Remove all  the comments in the spam queue</li><li>Remove all the un-approved  comments</li><li>Rename one username to another username, it’s designed  to rename default “Admin” user to something else</li><li>Apply MySql  optimize commands on your database tables without phpMyAdmin.</li><li>Display  Database table statistics.</li></ul><p>I really liked this wordpress plugin. Thanks to Ruhani Rabin who wrote this plugin.</p><p><img
class="alignnone size-full wp-image-4905" title="wp-optimize" src="http://wordpressapi.com/files/wp-optimize.jpg" alt="" width="378" height="77" /></p><p>You can download this plugin from here</p><p><a
href="http://wordpress.org/extend/plugins/wp-optimize/" target="_blank">http://wordpress.org/extend/plugins/wp-optimize/</a></p> ]]></content:encoded> <wfw:commentRss>http://wordpressapi.com/2010/07/25/optimize-wordpress-database/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Most Downloaded Free WordPress Image Gallery Plugins</title><link>http://wordpressapi.com/2010/07/17/downloaded-free-wordpress-image-gallery-plugins/</link> <comments>http://wordpressapi.com/2010/07/17/downloaded-free-wordpress-image-gallery-plugins/#comments</comments> <pubDate>Sat, 17 Jul 2010 08:10:31 +0000</pubDate> <dc:creator>Sony</dc:creator> <category><![CDATA[Wordpress Plugins]]></category> <category><![CDATA[tutorials]]></category> <category><![CDATA[web design]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[wordpress tutorials]]></category> <category><![CDATA[flash]]></category> <category><![CDATA[photo gallery]]></category> <category><![CDATA[wordpress plugins]]></category><guid
isPermaLink="false">http://wordpressapi.com/?p=4542</guid> <description><![CDATA[Photo Gallery, picture gallery, or slideshow are the best way to showcase your images/photos to your readers. There are a lot of different methods to create them, and the alternative you&#8217;re most likely to be using Flash or JavaScript Below is the most downloaded image gallery plugins that we have choosen directly from thewordpress plugin.....]]></description> <content:encoded><![CDATA[<p>Photo Gallery, picture gallery, or slideshow are the best way to showcase your images/photos to your readers. There are a lot of different methods to create them, and the alternative you&#8217;re most likely to be using Flash or JavaScript</p><p>Below is the most downloaded image gallery plugins that we have choosen directly from the<a
href="http://wordpress.org/extend/plugins/">wordpress plugin directory</a>. To make it even easier for you to choose, I also added live demo link under every image plugin! All of the resources in this post are categorized and hopefully you will find a number of new plugin that will be practical for your own work.</p><p>Using Lightbox, Thickbox, and Fancybox Effect</p><p><a
href="http://wordpress.org/extend/plugins/nextgen-gallery/">NextGEN Gallery</a></p><p><a
href="http://wordpress.org/extend/plugins/nextgen-gallery/"></a><a
href="http://alexrabe.de/wordpress-plugins/nextgen-gallery/"><strong>Demo</strong></a> | <a
href="http://wordpress.org/extend/plugins/nextgen-gallery/"><strong>Download</strong></a> (Version 1.5.5 | Updated 2010-6-14 | Downloads <strong>2,007,702</strong>)</p><ul><p><a
href="http://wordpress.org/extend/plugins/lightbox-2/"></a></p><p><a
href="http://wordpress.org/extend/plugins/lightbox-2/"></a></p><p><a
href="http://wordpress.org/extend/plugins/lightbox-2/"></a></p><p><a
href="http://wordpress.org/extend/plugins/lightbox-2/"></a></p></ul><p>NextGEN Gallery is a full integrated Image Gallery plugin for WordPress with a Flash slideshow option.</p><p> </p><ul><a
href="http://wordpress.org/extend/plugins/lightbox-2/"> </a></ul><p><a
href="http://wordpress.org/extend/plugins/lightbox-2/"></a></p><p><a
href="http://wordpress.org/extend/plugins/lightbox-2/"></a></p><p> </p><h3 style="display: inline !important;"><a
href="http://wordpress.org/extend/plugins/lightbox-2/">Lightbox 2</a></h3><p> </p><p><a
href="http://stimuli.ca/lightbox/">Demo</a> | <a
href="http://wordpress.org/extend/plugins/lightbox-2/">Download</a> (Version 2.9.2 | Updated 2010-2-10 | Downloads <strong>385,160</strong>)</p><ul><p><a
href="http://wordpress.org/extend/plugins/shadowbox-js/"></a></p><p><a
href="http://wordpress.org/extend/plugins/shadowbox-js/"></a></p><p><a
href="http://wordpress.org/extend/plugins/shadowbox-js/"></a></p><p><a
href="http://wordpress.org/extend/plugins/shadowbox-js/"></a></p></ul><p>Used to overlay images on the current page. Lightbox JS v2.2 by Lokesh Dhakar. Now with better regular expressions, courtesy of Michael Tyson!</p><p> </p><ul><a
href="http://wordpress.org/extend/plugins/shadowbox-js/"> </a></ul><p><a
href="http://wordpress.org/extend/plugins/shadowbox-js/"></a></p><p><a
href="http://wordpress.org/extend/plugins/shadowbox-js/"></a></p><p> </p><h3 style="display: inline !important;"><a
href="http://wordpress.org/extend/plugins/shadowbox-js/">Shadowbox JS</a></h3><p> </p><p><a
href="http://sivel.net/wordpress/shadowbox-js/">Demo</a> | <a
href="http://wordpress.org/extend/plugins/shadowbox-js/">Download</a> (Version 3.0.3.2 | Updated 2010-4-6 | Downloads <strong>175,656</strong>)</p><ul><p><a
href="http://wordpress.org/extend/plugins/lightbox-plus/"></a></p><p><a
href="http://wordpress.org/extend/plugins/lightbox-plus/"></a></p><p><a
href="http://wordpress.org/extend/plugins/lightbox-plus/"></a></p><p><a
href="http://wordpress.org/extend/plugins/lightbox-plus/"></a></p></ul><p>Shadowbox is an online media vieiwing application similar to Lightbox and Thickbox but with more functionality. Supports all types of media.</p><p> </p><ul><a
href="http://wordpress.org/extend/plugins/lightbox-plus/"> </a></ul><p><a
href="http://wordpress.org/extend/plugins/lightbox-plus/"></a></p><p><a
href="http://wordpress.org/extend/plugins/lightbox-plus/"></a></p><p><a
href="http://wordpress.org/extend/plugins/lightbox-plus/"> </a></p><p><h3 style="display: inline !important;"><a
href="http://wordpress.org/extend/plugins/lightbox-plus/">Lightbox Plus</a></h3></p><p><a
href="http://www.23systems.net/plugins/lightbox-plus/demos/">Demo</a> | <a
href="http://wordpress.org/extend/plugins/lightbox-plus/">Download</a> (Version 2.0.5 | Updated 2010-7-2 | Downloads <strong>112,323</strong>)</p><ul><p><a
href="http://wordpressgogo.com/development/lightbox-gallery.html#english"></a></p><p><a
href="http://wordpressgogo.com/development/lightbox-gallery.html#english"></a></p><p><a
href="http://wordpressgogo.com/development/lightbox-gallery.html#english"></a></p><p><a
href="http://wordpressgogo.com/development/lightbox-gallery.html#english"></a></p></ul><p>Lightbox Plus permits users to view larger versions of images, simple slide shows, videos and content all in an overlay.</p><p> </p><ul><a
href="http://wordpressgogo.com/development/lightbox-gallery.html#english"> </a></ul><p><a
href="http://wordpressgogo.com/development/lightbox-gallery.html#english"></a></p><p><a
href="http://wordpressgogo.com/development/lightbox-gallery.html#english"></a></p><p><a
href="http://wordpressgogo.com/development/lightbox-gallery.html#english"> </a></p><p><h3 style="display: inline !important;"><a
href="http://wordpressgogo.com/development/lightbox-gallery.html#english">Lightbox Gallery</a></h3></p><p><a
href="http://hiroaki.gentoki.com/">Demo</a> | <a
href="http://wordpress.org/extend/plugins/lightbox-gallery/">Download</a> (Version 0.6.2 | Updated 2009-12-20 | Downloads <strong>87,964</strong>)</p><ul><p><a
href="http://wordpress.org/extend/plugins/jquery-lightbox-balupton-edition/"></a></p><p><a
href="http://wordpress.org/extend/plugins/jquery-lightbox-balupton-edition/"></a></p><p><a
href="http://wordpress.org/extend/plugins/jquery-lightbox-balupton-edition/"></a></p><p><a
href="http://wordpress.org/extend/plugins/jquery-lightbox-balupton-edition/"></a></p></ul><p>This plugin changes the view of galleries to the lightbox.</p><p> </p><ul><a
href="http://wordpress.org/extend/plugins/jquery-lightbox-balupton-edition/"> </a></ul><p><a
href="http://wordpress.org/extend/plugins/jquery-lightbox-balupton-edition/"></a></p><p><a
href="http://wordpress.org/extend/plugins/jquery-lightbox-balupton-edition/"></a></p><p><a
href="http://wordpress.org/extend/plugins/jquery-lightbox-balupton-edition/"> </a></p><p><h3 style="display: inline !important;"><a
href="http://wordpress.org/extend/plugins/jquery-lightbox-balupton-edition/">jQuery Lightbox</a></h3></p><p><a
href="http://www.pedrolamas.com/projectos/jquery-lightbox-en/">Demo</a> | <a
href="http://wordpress.org/extend/plugins/jquery-lightbox-balupton-edition/">Download</a> (Version 0.10 | Updated 2010-6-29 | Downloads <strong>69,992</strong>)</p><ul><p><a
href="http://wordpress.org/extend/plugins/shutter-reloaded/"></a></p><p><a
href="http://wordpress.org/extend/plugins/shutter-reloaded/"></a></p><p><a
href="http://wordpress.org/extend/plugins/shutter-reloaded/"></a></p><p><a
href="http://wordpress.org/extend/plugins/shutter-reloaded/"></a></p></ul><p>Used to overlay images on the current page.</p><p> </p><ul><a
href="http://wordpress.org/extend/plugins/shutter-reloaded/"> </a></ul><p><a
href="http://wordpress.org/extend/plugins/shutter-reloaded/"></a></p><p><a
href="http://wordpress.org/extend/plugins/shutter-reloaded/"></a></p><p><a
href="http://wordpress.org/extend/plugins/shutter-reloaded/"> </a></p><p><h3 style="display: inline !important;"><a
href="http://wordpress.org/extend/plugins/shutter-reloaded/">Shutter Reloaded</a></h3></p><p><a
href="http://www.laptoptips.ca/projects/wp-shutter-reloaded/">Demo</a> | <a
href="http://wordpress.org/extend/plugins/shutter-reloaded/">Download</a> (Version 2.4.1 | Updated 2009-12-17 | Downloads <strong>64,557</strong>)</p><ul><p><a
href="http://wordpress.org/extend/plugins/fancybox-for-wordpress/"></a></p><p><a
href="http://wordpress.org/extend/plugins/fancybox-for-wordpress/"></a></p><p><a
href="http://wordpress.org/extend/plugins/fancybox-for-wordpress/"></a></p><p><a
href="http://wordpress.org/extend/plugins/fancybox-for-wordpress/"></a></p></ul><p>Darkens the current page and displays an image (like Lightbox, Thickbox, etc.), but is a lot smaller (10KB) and faster.</p><p> </p><ul><a
href="http://wordpress.org/extend/plugins/fancybox-for-wordpress/"> </a></ul><p><a
href="http://wordpress.org/extend/plugins/fancybox-for-wordpress/"></a></p><p><a
href="http://wordpress.org/extend/plugins/fancybox-for-wordpress/"></a></p><p><a
href="http://wordpress.org/extend/plugins/fancybox-for-wordpress/"> </a></p><p><h3 style="display: inline !important;"><a
href="http://wordpress.org/extend/plugins/fancybox-for-wordpress/">FancyBox for WordPress</a></h3></p><p><a
href="http://blog.moskis.net/downloads/plugins/fancybox-for-wordpress/">Demo</a> | <a
href="http://wordpress.org/extend/plugins/fancybox-for-wordpress/">Download</a> (Version 2.7.2 | Updated 2009-12-20 | Downloads <strong>58,120</strong>)</p><ul><p><a
href="http://wordpress.org/extend/plugins/lightview-plus/"></a></p><p><a
href="http://wordpress.org/extend/plugins/lightview-plus/"></a></p><p><a
href="http://wordpress.org/extend/plugins/lightview-plus/"></a></p><p><a
href="http://wordpress.org/extend/plugins/lightview-plus/"></a></p></ul><p>Seamlessly integrates FancyBox into your blog: Upload, activate, and you’re done. No further configuration needed.</p><p> </p><ul><a
href="http://wordpress.org/extend/plugins/lightview-plus/"> </a></ul><p><a
href="http://wordpress.org/extend/plugins/lightview-plus/"></a></p><p><a
href="http://wordpress.org/extend/plugins/lightview-plus/"></a></p><p><a
href="http://wordpress.org/extend/plugins/lightview-plus/"> </a></p><p><h3 style="display: inline !important;"><a
href="http://wordpress.org/extend/plugins/lightview-plus/">Lightview Plus</a></h3></p><p><a
href="http://www.puzich.com/wordpress-plugins/lightview">Demo</a> | <a
href="http://wordpress.org/extend/plugins/lightview-plus/">Download</a> (Version 2.5 | Updated 2010-5-13 | Downloads <strong>54,341</strong>)<br
/> Seamless integration of Lightview (similar to Lightbox, Thickbox, Floatbox, Thickbox, Fancybox) to create a nice overlay to display images and videos.</p><p> </p><p> <strong>Using Flip Effect</strong></p><p><strong> </strong><br
/><h3 style="display: inline !important;"><a
href="http://wordpress.org/extend/plugins/page-flip-image-gallery/">Page Flip Image Gallery</a></h3></p><p><a
href="http://www.dynamicwp.net/articles-and-tutorials/25-most-downloaded-free-wordpress-image-gallery-plugins/">Demo</a> | <a
href="http://wordpress.org/extend/plugins/page-flip-image-gallery/">Download</a> (Version 0.5.11.1 | Updated 2010-6-25 | Downloads <strong>469,854</strong>)<br
/> FlippingBook WordPress Gallery plugin helps you to create Image Gallery with Page Flip effects on your blog.</p><p> <strong>Simple Image Gallery</strong></p><p><strong> </strong></p><h3 style="display: inline !important;"><a
href="http://wordpress.org/extend/plugins/post-rich-videos-and-photos-galleries/"><span
style="color: #000000;">Post videos and photo galleries</span></a></h3><p><a
href="http://www.cincopa.com/wpplugin/wordpress-plugin.aspx">Demo</a> | <a
href="http://wordpress.org/extend/plugins/post-rich-videos-and-photos-galleries/">Download</a> (Version 1.67 | Updated 2010-6-30 | Downloads <strong>341,511</strong>)</p><ul><p><a
href="http://wordpress.org/extend/plugins/yet-another-photoblog/"></a></p><p><a
href="http://wordpress.org/extend/plugins/yet-another-photoblog/"></a></p><p><a
href="http://wordpress.org/extend/plugins/yet-another-photoblog/"></a></p><p><a
href="http://wordpress.org/extend/plugins/yet-another-photoblog/"></a></p></ul><p>Post your videos and photo galleries/flash slideshows easily and in seconds.</p><p> </p><ul><a
href="http://wordpress.org/extend/plugins/yet-another-photoblog/"> </a></ul><p><a
href="http://wordpress.org/extend/plugins/yet-another-photoblog/"></a></p><p><a
href="http://wordpress.org/extend/plugins/yet-another-photoblog/"></a></p><p><a
href="http://wordpress.org/extend/plugins/yet-another-photoblog/"> </a></p><p><h3 style="display: inline !important;"><a
href="http://wordpress.org/extend/plugins/yet-another-photoblog/">Yet Another Photoblog</a></h3></p><p><a
href="http://wordpressapi.com/files/9-YetAnotherPhotoblog.jpg"><img
class="alignnone size-full wp-image-4546" title="9-YetAnotherPhotoblog" src="http://wordpressapi.com/files/9-YetAnotherPhotoblog.jpg" alt="" width="550" height="230" /></a><br
/> <a
href="http://johannes.jarolim.com/blog/wordpress/yet-another-photoblog/">Demo</a> | <a
href="http://wordpress.org/extend/plugins/yet-another-photoblog/">Download</a> (Version 1.9.24 | Updated 2009-12-27 | Downloads <strong>109,879</strong>)</p><ul><p><a
href="http://wordpress.org/extend/plugins/wp-simpleviewer/"></a></p><p><a
href="http://wordpress.org/extend/plugins/wp-simpleviewer/"></a></p><p><a
href="http://wordpress.org/extend/plugins/wp-simpleviewer/"></a></p><p><a
href="http://wordpress.org/extend/plugins/wp-simpleviewer/"></a></p></ul><p>Convert your WordPress Blog into a full featured photoblog in virtually no time.</p><p> </p><ul><a
href="http://wordpress.org/extend/plugins/wp-simpleviewer/"> </a></ul><p><a
href="http://wordpress.org/extend/plugins/wp-simpleviewer/"></a></p><p><a
href="http://wordpress.org/extend/plugins/wp-simpleviewer/"></a></p><p><a
href="http://wordpress.org/extend/plugins/wp-simpleviewer/"> </a></p><p><h3 style="display: inline !important;"><a
href="http://wordpress.org/extend/plugins/wp-simpleviewer/">WP-SimpleViewer</a></h3></p><p><a
href="http://wp-simpleviewer-demo.fuggi82.de/">Demo</a> | <a
href="http://wordpress.org/extend/plugins/wp-simpleviewer/">Download</a> (Version 1.5.4 | Updated 2010-1-9 | Downloads <strong>91,836</strong>)</p><ul><p><a
href="http://wordpress.org/extend/plugins/wp-photo-album/"></a></p><p><a
href="http://wordpress.org/extend/plugins/wp-photo-album/"></a></p><p><a
href="http://wordpress.org/extend/plugins/wp-photo-album/"></a></p><p><a
href="http://wordpress.org/extend/plugins/wp-photo-album/"></a></p></ul><p>Add SimpleViewer Flash image galleries to your posts and pages. Easy to use and several options to make it fit your needs.</p><p> </p><ul><a
href="http://wordpress.org/extend/plugins/wp-photo-album/"> </a></ul><p><a
href="http://wordpress.org/extend/plugins/wp-photo-album/"></a></p><p><a
href="http://wordpress.org/extend/plugins/wp-photo-album/"></a></p><p><a
href="http://wordpress.org/extend/plugins/wp-photo-album/"> </a></p><p><h3 style="display: inline !important;"><a
href="http://wordpress.org/extend/plugins/wp-photo-album/">WP Photo Album</a></h3></p><p><a
href="http://www.mywebsight.ws/photos/">Demo</a> | <a
href="http://wordpress.org/extend/plugins/wp-photo-album/">Download</a> (Version 1.5.1 | Updated 2008-9-25 | Downloads <strong>54,185</strong>)</p><ul><p><a
href="http://wordpress.org/extend/plugins/lazyest-gallery/"></a></p><p><a
href="http://wordpress.org/extend/plugins/lazyest-gallery/"></a></p><p><a
href="http://wordpress.org/extend/plugins/lazyest-gallery/"></a></p><p><a
href="http://wordpress.org/extend/plugins/lazyest-gallery/"></a></p></ul><p>This plugin is designed to easily manage and display your photo albums within your WordPress site.</p><p> </p><ul><a
href="http://wordpress.org/extend/plugins/lazyest-gallery/"> </a></ul><p><a
href="http://wordpress.org/extend/plugins/lazyest-gallery/"></a></p><p><a
href="http://wordpress.org/extend/plugins/lazyest-gallery/"></a></p><p><a
href="http://wordpress.org/extend/plugins/lazyest-gallery/"> </a></p><p><h3 style="display: inline !important;"><a
href="http://wordpress.org/extend/plugins/lazyest-gallery/">Lazyest Gallery</a></h3></p><p><a
href="http://brimosoft.nl/gallery/">Demo</a> | <a
href="http://wordpress.org/extend/plugins/lazyest-gallery/">Download</a> (Version 0.16.3 | Updated 2010-6-21 | Downloads <strong>54,160</strong>)<br
/> Lazyest Gallery is an integrated image gallery with automatic thumb and slide creation, comments on images, and a slide show.</p><p> <strong>Flickr Gallery</strong></p><p><strong> </strong></p><h3 style="display: inline !important;"><a
href="http://wordpress.org/extend/plugins/flickr-rss/"><span
style="color: #000000;">flickrRSS</span></a></h3><p><a
href="http://eightface.com/wordpress/flickrrss/">Demo</a> | <a
href="http://wordpress.org/extend/plugins/flickr-rss/">Download</a> (Version 5.1 | Updated 2009-4-29 | Downloads <strong>184,471</strong>)</p><ul><p><a
href="http://wordpress.org/extend/plugins/tantan-flickr/"></a></p><p><a
href="http://wordpress.org/extend/plugins/tantan-flickr/"></a></p><p><a
href="http://wordpress.org/extend/plugins/tantan-flickr/"></a></p><p><a
href="http://wordpress.org/extend/plugins/tantan-flickr/"></a></p></ul><p>Allows you to integrate Flickr photos into your site. It supports user, set, favorite, group and community photostreams.</p><p> </p><ul><a
href="http://wordpress.org/extend/plugins/tantan-flickr/"> </a></ul><p><a
href="http://wordpress.org/extend/plugins/tantan-flickr/"></a></p><p><a
href="http://wordpress.org/extend/plugins/tantan-flickr/"></a></p><p><a
href="http://wordpress.org/extend/plugins/tantan-flickr/"> </a></p><p><h3 style="display: inline !important;"><a
href="http://wordpress.org/extend/plugins/tantan-flickr/">Flickr Photo Album</a></h3></p><p><a
href="http://tantannoodles.com/flickr-demo/">Demo</a> | <a
href="http://wordpress.org/extend/plugins/tantan-flickr/">Download</a> (Version 1.1 | Updated 2008-10-6 | Downloads <strong>99,638</strong>)</p><ul><p><a
href="http://wordpress.org/extend/plugins/flickr-gallery/"></a></p><p><a
href="http://wordpress.org/extend/plugins/flickr-gallery/"></a></p><p><a
href="http://wordpress.org/extend/plugins/flickr-gallery/"></a></p><p><a
href="http://wordpress.org/extend/plugins/flickr-gallery/"></a></p></ul><p>This Flickr plugin for WordPress will allow you to pull in your Flickr photosets and display them as albums on your WordPress site.</p><p> </p><ul><a
href="http://wordpress.org/extend/plugins/flickr-gallery/"> </a></ul><p><a
href="http://wordpress.org/extend/plugins/flickr-gallery/"></a></p><p><a
href="http://wordpress.org/extend/plugins/flickr-gallery/"></a></p><p><a
href="http://wordpress.org/extend/plugins/flickr-gallery/"> </a></p><p><h3 style="display: inline !important;"><a
href="http://wordpress.org/extend/plugins/flickr-gallery/">Flickr Gallery</a></h3></p><p><a
href="http://co.deme.me/projects/flickr-gallery/">Release Page</a> | <a
href="http://wordpress.org/extend/plugins/flickr-gallery/">Download</a> (Version 1.4.0 | Updated 2010-7-4 | Downloads <strong>62,143</strong>)</p><ul><p><a
href="http://wordpress.org/extend/plugins/wordpress-flickr-manager-1/"></a></p><p><a
href="http://wordpress.org/extend/plugins/wordpress-flickr-manager-1/"></a></p><p><a
href="http://wordpress.org/extend/plugins/wordpress-flickr-manager-1/"></a></p><p><a
href="http://wordpress.org/extend/plugins/wordpress-flickr-manager-1/"></a></p></ul><p>Quickly and easily add Flickr galleries, photos, and even custom search results into your WordPress pages and posts.</p><p> </p><h3 style="display: inline !important;"><a
href="http://wordpress.org/extend/plugins/wordpress-flickr-manager-1/"><span
style="color: #000000;">WordPress Flickr Manager</span></a></h3><p><a
href="http://tgardner.net/wordpress-flickr-manager/">Demo</a> | <a
href="http://wordpress.org/extend/plugins/wordpress-flickr-manager-1/">Download</a> (Version 2.3 | Updated 2009-2-15 | Downloads <strong>58,330</strong>)<br
/> Handles uploading, modifying images on Flickr, and insertion into posts.</p><p> <strong>Image Tools</strong></p><p><strong> </strong></p><h3 style="display: inline !important;"><a
href="http://dev.huiz.net/2010/01/03/wordpress-plugin-scissors-for-v2-9/"><span
style="color: #000000;">Scissors</span></a></h3><p><a
href="http://vimeo.com/7363026">Demo</a> | <a
href="http://wordpress.org/extend/plugins/scissors/">Download</a> (Version 1.3.7 | Updated 2010-2-8 | Downloads <strong>99,029</strong>)<br
/> Scissors enhances WordPress’ handling of images by introducing cropping, resizing, rotating, and watermarking functionality.<br
/> For WordPress 2.9 – 3.0 please download here :<a
href="http://dev.huiz.net/2010/01/03/wordpress-plugin-scissors-for-v2-9/">http://dev.huiz.net/2010/01/03/wordpress-plugin-scissors-for-v2-9/</a></p><p> </p><p><strong>Using Flash</strong></p><ul><li><a
href="http://shabushabu.eu/simpleviewer/"><span
style="color: #000000;">Simple Viewer</span></a></li><li><a
href="http://shabushabu.eu/postcardviewer/"><span
style="color: #000000;">Postcard Viewer</span></a></li><li><a
href="http://shabushabu.eu/autoviewer/"><span
style="color: #000000;">Auto Viewer</span></a></li><p><a
href="http://wordpress.org/extend/plugins/flash-album-gallery/"></a></p><p><a
href="http://wordpress.org/extend/plugins/flash-album-gallery/"></a></p><p><a
href="http://wordpress.org/extend/plugins/flash-album-gallery/"></a></p><p><a
href="http://wordpress.org/extend/plugins/flash-album-gallery/"></a></p><p><a
href="http://wordpress.org/extend/plugins/flash-album-gallery/"> </a></p></ul><p><a
href="http://wordpress.org/extend/plugins/flash-album-gallery/"></a></p><p><a
href="http://wordpress.org/extend/plugins/flash-album-gallery/"></a></p><p><a
href="http://wordpress.org/extend/plugins/flash-album-gallery/"> </a></p><p><h3 style="display: inline !important;"><a
href="http://wordpress.org/extend/plugins/flash-album-gallery/">GRAND Flash Album Gallery</a></h3></p><p><a
href="http://codeasily.com/wordpress-plugins/flash-album-gallery/flag">Demo</a> | <a
href="http://wordpress.org/extend/plugins/flash-album-gallery/">Download</a> (Version 0.49 | Updated 2010-6-28 | Downloads <strong>85,050</strong>)</p><ul><p><a
href="http://wordpress.org/extend/plugins/nextgen-flashviewer/"></a></p><p><a
href="http://wordpress.org/extend/plugins/nextgen-flashviewer/"></a></p><p><a
href="http://wordpress.org/extend/plugins/nextgen-flashviewer/"></a></p><p><a
href="http://wordpress.org/extend/plugins/nextgen-flashviewer/"></a></p></ul><p>GRAND Flash Album Gallery is a full integrated (flash skin based, slideshow) Image Gallery plugin with a powerfull admin back end.</p><p> </p><ul><a
href="http://wordpress.org/extend/plugins/nextgen-flashviewer/"> </a></ul><p><a
href="http://wordpress.org/extend/plugins/nextgen-flashviewer/"></a></p><p><a
href="http://wordpress.org/extend/plugins/nextgen-flashviewer/"></a></p><p><a
href="http://wordpress.org/extend/plugins/nextgen-flashviewer/"> </a></p><p><h3 style="display: inline !important;"><a
href="http://wordpress.org/extend/plugins/nextgen-flashviewer/">NextGEN-FlashViewer</a></h3></p><p><a
href="http://shabushabu.eu/tiltviewer/">Demo</a> | <a
href="http://www.dynamicwp.net/articles-and-tutorials/25-most-downloaded-free-wordpress-image-gallery-plugins/">Download</a> (Version 1.3 | Updated 2009-2-1 | Downloads <strong>79,004</strong>)<br
/> The famous Adobe Flash Plugins from Airtight Interactive for NextGEN Gallery.<br
/> Other Demo :</p><p> <strong>Slideshow</strong></p><p><strong> </strong><br
/><h3 style="display: inline !important;"><a
href="http://wordpress.org/extend/plugins/featured-content-gallery/">Featured Content Gallery</a></h3></p><p><a
href="http://www.featuredcontentgallery.com/">Demo</a> | <a
href="http://wordpress.org/extend/plugins/featured-content-gallery/">Download</a> (Version 3.2.0 | Updated 2009-3-9 | Downloads <strong>212,344</strong>)</p><ul><p><a
href="http://wordpress.org/extend/plugins/wp-piclens/"></a></p><p><a
href="http://wordpress.org/extend/plugins/wp-piclens/"></a></p><p><a
href="http://wordpress.org/extend/plugins/wp-piclens/"></a></p><p><a
href="http://wordpress.org/extend/plugins/wp-piclens/"></a></p></ul><p>Used to create a customizable rotating image gallery anywhere within your WordPress site.</p><p> </p><ul><a
href="http://wordpress.org/extend/plugins/wp-piclens/"> </a></ul><p><a
href="http://wordpress.org/extend/plugins/wp-piclens/"></a></p><p><a
href="http://wordpress.org/extend/plugins/wp-piclens/"></a></p><p><a
href="http://wordpress.org/extend/plugins/wp-piclens/"> </a></p><p><h3 style="display: inline !important;"><a
href="http://wordpress.org/extend/plugins/wp-piclens/">WP PicLens</a></h3></p><p><a
href="http://www.cooliris.com/yoursite/express/">Demo</a> | <a
href="http://wordpress.org/extend/plugins/wp-piclens/">Download</a> (Version 1.0.5 | Updated 2008-1-29 | Downloads <strong>72,379</strong>)</p><ul><p><a
href="http://wordpress.org/extend/plugins/dynamic-content-gallery-plugin/"></a></p><p><a
href="http://wordpress.org/extend/plugins/dynamic-content-gallery-plugin/"></a></p><p><a
href="http://wordpress.org/extend/plugins/dynamic-content-gallery-plugin/"></a></p><p><a
href="http://wordpress.org/extend/plugins/dynamic-content-gallery-plugin/"></a></p></ul><p>Creates an immersive, full-screen slideshow presentation of photos and images in your blog.</p><p> </p><ul><a
href="http://wordpress.org/extend/plugins/dynamic-content-gallery-plugin/"> </a></ul><p><a
href="http://wordpress.org/extend/plugins/dynamic-content-gallery-plugin/"></a></p><p><a
href="http://wordpress.org/extend/plugins/dynamic-content-gallery-plugin/"></a></p><p><a
href="http://wordpress.org/extend/plugins/dynamic-content-gallery-plugin/"> </a></p><p><h3 style="display: inline !important;"><a
href="http://wordpress.org/extend/plugins/dynamic-content-gallery-plugin/">Dynamic Content Gallery</a></h3></p><p><a
href="http://www.studiograsshopper.ch/dynamic-content-gallery/">Demo</a> | <a
href="http://wordpress.org/extend/plugins/dynamic-content-gallery-plugin/">Download</a> (Version 3.2.3 | Updated 2010-4-11 | Downloads <strong>54,089</strong>)<br
/> Creates a dynamic gallery of images for latest or featured content selected from one category, a mix of categories, or pages.</p><p><a
href="http://www.dynamicwp.net/articles-and-tutorials/25-most-downloaded-free-wordpress-image-gallery-plugins/" target="_blank"><span
style="color: #000000;">Source Link</span></a></p> ]]></content:encoded> <wfw:commentRss>http://wordpressapi.com/2010/07/17/downloaded-free-wordpress-image-gallery-plugins/feed/</wfw:commentRss> <slash:comments>9</slash:comments> </item> <item><title>Keep upto date wordpress database with WP-DB-Backup</title><link>http://wordpressapi.com/2010/07/04/upto-date-wordpress-database-wp-db-backup/</link> <comments>http://wordpressapi.com/2010/07/04/upto-date-wordpress-database-wp-db-backup/#comments</comments> <pubDate>Sun, 04 Jul 2010 08:51:39 +0000</pubDate> <dc:creator>Sony</dc:creator> <category><![CDATA[Wordpress Plugins]]></category> <category><![CDATA[tutorials]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[wordpress hacks]]></category> <category><![CDATA[wordpress tutorials]]></category> <category><![CDATA[plugin]]></category> <category><![CDATA[wordpress plugins]]></category> <category><![CDATA[wordpress tips]]></category> <category><![CDATA[wp]]></category><guid
isPermaLink="false">http://wordpressapi.com/?p=4061</guid> <description><![CDATA[Keeping your wordpress database is very important for wordpress database. This will improve your site speed aslo. Many times you install the wordpress plugins and some time you dont want that plugins and you delete that plugins. There is very nice wordpress plugin is avilable for database backup. WP-DB-Backup WP-DB-Backup allows you easily to backup.....]]></description> <content:encoded><![CDATA[<p>Keeping your wordpress database is very important for wordpress database. This will improve your site speed aslo.<br
/> Many times you install the wordpress plugins and some time you dont want that plugins and you delete that plugins. There is very nice wordpress plugin is avilable for database backup.</p><h2><a
href="http://wordpress.org/extend/plugins/wp-db-backup/" target="_blank">WP-DB-Backup</a></h2><p>WP-DB-Backup allows you easily to backup your core WordPress database  tables.  You may also backup other tables in the same database.<br
/> But that plugins create some tables in your wordpress database. You need to remove that tables from your wordpress database.<br
/> Imp note: when ever you are cleaning the database or deleting the unwanted tables from wordpress database. Please consult with your web administrator.<br
/> Dont forget to take a full backup of your database.</p><p>This tutorial should be forward-compatible with WordPress 3.0</p><p>1. Install WP-DB-Backup by Austin Matzko</p><p>2. Mouse over Tools so that the down arrow appears</p><p>3. Click the down arrow</p><p>4. Click Backup</p><p>5. You’ll see something like this:</p><p><a
href="http://wordpressapi.com/files/wp-db-backup.jpg"><img
class="alignnone size-full wp-image-4063" title="wp-db-backup" src="http://wordpressapi.com/files/wp-db-backup.jpg" alt="" width="540" height="476" /></a></p><p>On the left are the default database tables included with WordPress. All of these are included every time you backup. The only thing you have to decide here is whether to exclude spam comments from being backed up (I recommend this) and whether to exclude post revisions (I recommend excluding these too, unless you have a specific reason for keeping revisions).</p><p>On the right is a list of additional database tables, most of which were probably created by plugins. There’s also a table called that will end with the name “commentmeta” – this can be used by plugins.</p><p>If your plugins have created a lot of data that you would like to save, or you’ve spent a lot of time configuring particular plugins, you’ll want to backup these tables. Otherwise, you can keep your database backups smaller by not checking them.</p><p>7. Next we see the Backup Option. There are three choices here:</p><p>A. Save to the server</p><p>This will save a backup of your database as a file on your web server. I don’t recommend this.</p><p>B. Download to your computer.</p><p>This will create a database backup file that you can save to your local computer.</p><p>C. Email backup to:</p><p>This allows you to send a copy of the backup to any e-mail address you’d like.</p><p>8. Let’s go ahead and download a copy to our hard drives now.</p><p>Check options you want in the Tables section then click “Backup now!”</p><p>You should see a progress bar, and when that’s done your browser will prompt you to save the file. You can save this file wherever you’d like.</p><p>9. There’s another section called “Scheduled Backup.” This is where this program gets really great.</p><p>Here we can schedule a backup to be e-mailed to a particular e-mail address however often we’d like. I recommend checking selecting “Once Daily.”</p><p>10. On the right, you’ll see that list of optional tables again. Check the ones you want to backup every time the backup runs.</p><p>11. Enter the e-mail address you want the backups delivered to in the “Email backup to:” field.</p><p>12. Click “Schedule backup.”</p><p>13. You should now get a backup file as an e-mail attachment every day. You should save these attachments to your local computer. If you’re using Gmail or another web mail host that has a lot of storage space, you might want to leave your databases on their server as an additional off-site backup. Be aware that that’s an additional security risk – if your e-mail account is ever compromised, the would have access to all of your database backups.</p> ]]></content:encoded> <wfw:commentRss>http://wordpressapi.com/2010/07/04/upto-date-wordpress-database-wp-db-backup/feed/</wfw:commentRss> <slash:comments>9</slash:comments> </item> <item><title>Restrict the Adults on wordpress website</title><link>http://wordpressapi.com/2010/07/04/restrict-adults-wordpress-website/</link> <comments>http://wordpressapi.com/2010/07/04/restrict-adults-wordpress-website/#comments</comments> <pubDate>Sun, 04 Jul 2010 08:39:01 +0000</pubDate> <dc:creator>Sony</dc:creator> <category><![CDATA[Wordpress Plugins]]></category> <category><![CDATA[tutorials]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[wordpress hacks]]></category> <category><![CDATA[wordpress tutorials]]></category> <category><![CDATA[plugins]]></category> <category><![CDATA[wordpress tips]]></category> <category><![CDATA[wp]]></category> <category><![CDATA[wp plugin]]></category><guid
isPermaLink="false">http://wordpressapi.com/?p=4057</guid> <description><![CDATA[Many times you website content is not suitable for all the age group. There is very nice wordpress free plugin available. Restricted to Adults There&#8217;s a lot of content which isn&#8217;t appropriate for all ages. The [Association of Sites Advocating Child Protection (ASACP)](http://www.asacp.org/ &#8220;ASACP) has developed the Restricted to Adults (RTA) tag which most online.....]]></description> <content:encoded><![CDATA[<p><a
href="http://wordpressapi.com/files/ASACP-Association-of-Sites-Advocating-Child-Protection_1278232686312.png"><img
class="alignnone size-full wp-image-4058" title="ASACP- Association of Sites Advocating Child Protection_1278232686312" src="http://wordpressapi.com/files/ASACP-Association-of-Sites-Advocating-Child-Protection_1278232686312.png" alt="" width="567" height="258" /></a></p><p>Many times you website content is not suitable for all the age group. There is very nice wordpress free plugin available.</p><h2><a
href="http://wordpress.org/extend/plugins/restricted-to-adults/" target="_blank">Restricted to Adults</a></h2><p>There&#8217;s a lot of content which isn&#8217;t appropriate for all ages. The  [Association of Sites Advocating Child Protection  (ASACP)](http://www.asacp.org/ &#8220;ASACP) has developed the Restricted to  Adults (RTA) tag which most online protection software respects.</p><p>Installing the RTA tag on a WordPress install can be somewhat  complicated, so the Restricted to Adults plugin makes it one click &#8212;  activate the plugin and your site is restricted to adults.</p> ]]></content:encoded> <wfw:commentRss>http://wordpressapi.com/2010/07/04/restrict-adults-wordpress-website/feed/</wfw:commentRss> <slash:comments>4</slash:comments> </item> <item><title>WordPress completed the 100th Million Plugin Download</title><link>http://wordpressapi.com/2010/07/03/wordpress-completed-100th-million-plugin-download/</link> <comments>http://wordpressapi.com/2010/07/03/wordpress-completed-100th-million-plugin-download/#comments</comments> <pubDate>Sat, 03 Jul 2010 10:42:35 +0000</pubDate> <dc:creator>Sony</dc:creator> <category><![CDATA[Open source]]></category> <category><![CDATA[Wordpress Plugins]]></category> <category><![CDATA[news]]></category> <category><![CDATA[technology]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[plugin]]></category> <category><![CDATA[wordpress plugins]]></category> <category><![CDATA[wp]]></category> <category><![CDATA[wp plugins]]></category><guid
isPermaLink="false">http://wordpressapi.com/?p=4025</guid> <description><![CDATA[WordPress has just announced the 100th million plugin has now been downloaded. It’s a smaller milestone but just as impressive if not even more so, since blogging tools are not going to have the same mainstream audience or appeal as a web browser. WordPress is also celebrating a smaller milestone, the newly launched WordPress 3.0.....]]></description> <content:encoded><![CDATA[<p><a
href="http://wordpressapi.com/files/100-millions-wordpress-plugins.jpg"><img
class="alignnone size-full wp-image-4027" title="100-millions-wordpress-plugins" src="http://wordpressapi.com/files/100-millions-wordpress-plugins.jpg" alt="" width="500" height="375" /></a></p><p>WordPress has just announced the 100th million  plugin has now been downloaded. It’s a smaller milestone but just as  impressive if not even more so, since blogging tools are not going to  have the same mainstream audience or appeal as a web browser. WordPress  is also celebrating a smaller milestone, the newly launched WordPress  3.0 has just passed three million downloads.</p><p>What wordpress is saying?</p><div><p>WordPress 3.0 Thelonious passed <a
href="http://wordpress.org/download/counter/">3 million downloads</a> yesterday, and today <a
href="http://wordpress.org/extend/plugins/">the  plugin directory</a> followed suit with a milestone of its own: 100  million downloads.</p><p>The WordPress community’s growth over the years has been tremendous,  and we want to reinvest in it. So we’re taking the next two months to  concentrate on improving WordPress.org. A major part of that will be  improving the infrastructure of the plugins directory. More than 10,000  plugins are in the directory, every one of them GPL compatible and free  as in both beer and speech. Here’s what we have in mind:</p><p>We want to provide developers the tools they need to build the best  possible plugins. We’re going to provide better integration with the  forums so you can support your users. We’ll make more statistics  available to you so you can analyze your user base, and over time we  hope to make it easier for you to manage, build, and release localized  plugins.</p><p>We want to improve how the core software works with your plugin and  the plugin directory. We’re going to focus on ensuring seamless upgrades  by making the best possible determinations about compatibility, and  offer continual improvements to the plugin installer. And we also want  to give you a better developer tool set like SVN notifications and  improvements to the bug tracker.</p><p>We’re also going to experiment with other great ideas to help the  community help plugin authors. We want it to be easy for you to offer  comments to plugin authors and the community, including user reviews and  better feedback. We may experiment with an adoption process for  abandoned plugins as a way to revitalize hidden gems in the directory.  I’m not sure there is a better way to show how extendable WordPress is  and how awesome this community is at the same time.</p><p>As <a
href="http://wordpress.org/development/2010/06/thelonious/">Matt  said in the 3.0 release announcement</a>, our goal isn’t to make  everything perfect all at once. But we think incremental improvements  can provide us with a great base for 3.1 and beyond, and for the tens of  millions of users, and hundreds of millions of plugin downloads to  come.</p></div><p>There are now a little over 10,000 plugins in the  WordPress <a
rel="nofollow" href="http://wordpress.org/extend/plugins/" target="_blank"><strong>directory</strong></a> which really puts the 100 million downloads number in perspective. Of  course, some plugins are more popular than others, but it does indicate  that bloggers are very interested in the added functionality these  plugins provide.</p><p>The most popular plugin is the antispam tool  Akismet with over 8.5 million downloads to date. The tool comes  pre-installed with WordPress, so that may explain its popularity,  although, these installs may not be counted as downloads. However, later  updates are probably counted. Other popular plugins are the All in One  SEO Pack with five million downloads and Google XML Sitemaps with close  to four million.</p><p>Given the popularity of WordPress plugins, it’s  no surprise that they are now getting some attention from the  development team. Having <a
href="http://news.softpedia.com/news/Download-WordPress-3-0-Final-144915.shtml" target="_blank"><strong>wrapped  up WordPress 3.0</strong></a>, the team decided to focus on some of the  things surrounding WordPress rather than the software itself.</p><p>“The  WordPress community’s growth over the years has been tremendous, and we  want to reinvest in it. So we’re taking the next two months to  concentrate on improving WordPress.org. A major part of that will be  improving the infrastructure of the plugins directory,” Andrew Nacin, a  WordPress developer, <a
rel="nofollow" href="http://wordpress.org/development/2010/07/100-million/" target="_blank"><strong>announced</strong></a>.</p><p>“We’re going to provide better integration with the forums so  you can support your users. We’ll make more statistics available to you  so you can analyze your user base, and over time we hope to make it  easier for you to manage, build, and release localized plugins,” he  explained.</p> ]]></content:encoded> <wfw:commentRss>http://wordpressapi.com/2010/07/03/wordpress-completed-100th-million-plugin-download/feed/</wfw:commentRss> <slash:comments>4</slash:comments> </item> <item><title>15 Top most popular wordpress plugins</title><link>http://wordpressapi.com/2010/06/28/15-top-popular-wordpress-plugins/</link> <comments>http://wordpressapi.com/2010/06/28/15-top-popular-wordpress-plugins/#comments</comments> <pubDate>Mon, 28 Jun 2010 20:09:46 +0000</pubDate> <dc:creator>Sony</dc:creator> <category><![CDATA[Wordpress Plugins]]></category> <category><![CDATA[news]]></category> <category><![CDATA[social]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[wordpress tutorials]]></category> <category><![CDATA[plugin]]></category> <category><![CDATA[plugins]]></category> <category><![CDATA[wordpress plugins]]></category> <category><![CDATA[wp plugins]]></category><guid
isPermaLink="false">http://wordpressapi.com/?p=3810</guid> <description><![CDATA[In last few years wordpress become most popular CMS in the world. WordPress has great support of wordpress plugins which are free. Many people many types of wordpress plugins as per there use. Here I am going to give you the list of most popular wordpress plugins which are downloaded millions times. I recommend if.....]]></description> <content:encoded><![CDATA[<p><a
href="http://wordpressapi.com/files/15-top-wordpress-plugins.png"><img
class="alignnone size-full wp-image-3811" src="http://wordpressapi.com/files/15-top-wordpress-plugins.png" alt="" width="318" height="160" /></a></p><p>In last few years wordpress become most popular CMS in the world. WordPress has great support of wordpress plugins which are free.<br
/> Many people many types of wordpress plugins as per there use.</p><p>Here I am going to give you the list of most popular wordpress plugins which are downloaded millions times.<br
/> I recommend if you hosted your website with wordpress you must use following wordpress plugins.</p><h3><a
href="http://wordpress.org/extend/plugins/akismet/">Akismet</a></h3><p>Akismet checks your comments against the Akismet web service to see if they look like spam or not.<br
/> This Plugins is downloaded 8,477,963 times.</p><h3><a
href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/">All  in One SEO Pack</a></h3><p>Automatically optimizes your WordPress blog for Search Engines (Search Engine Optimization).<br
/> This Plugins is downloaded 5,291,396 times.</p><h3><a
href="http://wordpress.org/extend/plugins/google-sitemap-generator/">Google  XML Sitemaps</a></h3><p>This plugin will generate a special XML sitemap which will help search engines to better index your blog.<br
/> This Plugins is downloaded 3,935,776 times.</p><h3><a
href="http://wordpress.org/extend/plugins/wp-super-cache/">WP  Super Cache</a></h3><p>A very fast caching engine for WordPress that produces static html files.<br
/> This Plugins is downloaded 94,084 times.</p><h3><a
href="http://wordpress.org/extend/plugins/wptouch/">WPtouch  iPhone Theme</a></h3><p>WPtouch automatically transforms your WordPress blog into an iPhone application-style theme, complete with ajax loading articles and effects, when vie<br
/> This Plugins is donwloaded 876,885 times.</p><h3><a
href="http://wordpress.org/extend/plugins/nextgen-gallery/">NextGEN  Gallery</a></h3><p>NextGEN Gallery is a full integrated Image Gallery plugin for WordPress with a Flash slideshow option.<br
/> This Plugins is downloaded 1,988,926 times.</p><h3><a
href="http://wordpress.org/extend/plugins/contact-form-7/">Contact  Form 7</a></h3><p>Just another contact form plugin. Simple but flexible.<br
/> This Plugins is downloaded 2,021,419 times.</p><h3><a
href="http://wordpress.org/extend/plugins/stats/">WordPress.com  Stats</a></h3><p>You can have simple, concise stats with no additional load on your server by plugging into WordPress.com&#8217;s stat system.<br
/> This Plugins is donwloaded 1,688,181 times.</p><h3><a
href="http://wordpress.org/extend/plugins/si-contact-form/">Fast  and Secure Contact Form</a></h3><p>A super customizable contact form that lets your visitors send you email. Blocks all common spammer tactics. Spam is no longer a problem.<br
/> This Plugins is downloaded 343,069 times.</p><h3><a
href="http://wordpress.org/extend/plugins/ourstatsde-widget/">ourSTATS  Widget</a></h3><p>create a widget for the ourstats.de counter service<br
/> This Plugins is downloaded 80,348 times.</p><h3><a
href="http://wordpress.org/extend/plugins/post-rich-videos-and-photos-galleries/">Post  videos and photo galleries</a></h3><p>Post your videos and photo galleries/flash slideshows easily and in seconds.<br
/> This Plugins is downloaded 326,804 times.</p><h3><a
href="http://wordpress.org/extend/plugins/add-to-any/">AddToAny:  Share/Bookmark/Email Button</a></h3><p>Help people share, bookmark, and email your posts &amp; pages using any service, such as Facebook, Twitter, Google Buzz, Digg and many more.<br
/> This Plugins is downloaded 995,509 times.</p><h3><a
href="http://wordpress.org/extend/plugins/wp-pagenavi/">WP-PageNavi</a></h3><p>Adds a more advanced paging navigation to your WordPress site.<br
/> This Plugins is downloaded 868,432 times.</p><h3><a
href="http://wordpress.org/extend/plugins/google-analyticator/">Google  Analyticator</a></h3><p>Adds the necessary JavaScript code to enable Google Analytics. Includes widgets for Analytics data display.<br
/> This Plugins is downloaded 936,897 times.</p><h3><a
href="http://wordpress.org/extend/plugins/wordpress-23-related-posts-plugin/">WordPress  Related Posts</a></h3><p>WordPress Related Posts Plugin will generate a related posts via WordPress tags, and add the related posts to feed.<br
/> This Plugins is donwloaded 220,359 times.</p> ]]></content:encoded> <wfw:commentRss>http://wordpressapi.com/2010/06/28/15-top-popular-wordpress-plugins/feed/</wfw:commentRss> <slash:comments>10</slash:comments> </item> <item><title>amazing 100 plugins for wordpress</title><link>http://wordpressapi.com/2010/06/26/amazing-100-plugins-wordpress/</link> <comments>http://wordpressapi.com/2010/06/26/amazing-100-plugins-wordpress/#comments</comments> <pubDate>Sat, 26 Jun 2010 20:50:56 +0000</pubDate> <dc:creator>Mahesh</dc:creator> <category><![CDATA[Wordpress Plugins]]></category> <category><![CDATA[best wordpress plugins]]></category> <category><![CDATA[free wordpress plugins]]></category> <category><![CDATA[wordpress plugins]]></category><guid
isPermaLink="false">http://wordpressapi.com/?p=3688</guid> <description><![CDATA[Here&#8217;s 100 plugins for your wordpress site. Taking advantage of some of the awesome plugins that are available can really make a difference in how you blog and can boost productivity and efficiency instantly. Seo WordPress Plugins 1. All in One SEO Pack – By far the gold standard of SEO plugins, “All in One”.....]]></description> <content:encoded><![CDATA[<p>Here&#8217;s 100 plugins for your wordpress site. Taking advantage of some of the awesome plugins that are available can  really make a difference in how you blog and can boost productivity and  efficiency instantly.</p><p><a
href="http://wordpressapi.com/files/amazing-wordpress-plugins.jpg"><img
class="alignnone size-full wp-image-3689" src="http://wordpressapi.com/files/amazing-wordpress-plugins.jpg" alt="" width="335" height="334" /></a></p><h1><strong>Seo WordPress Plugins</strong></h1><p>1. <strong><a
href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/">All in  One SEO Pack</a></strong> – By far the gold standard of SEO plugins,  “All in One” provides a multitude of easy to understand options to get  your blog up to par SEO wise. 99% of WordPress users will agree when I  say this is an absolute must have when it comes to plugins. With over 2  million downloads and growing, you can’t go wrong.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>2. <strong><a
href="http://wordpress.org/extend/plugins/seo-title-tag/">SEO Title Tag</a></strong> – Although the plugin above can control title tags on your WordPress  blog, this plugin is an outstanding solution to optimize and customize  every title tag on your blog.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>3. <strong><a
href="http://wordpress.org/extend/plugins/headspace2/">HeadSpace2  SEO</a></strong> – This handy dandy SEO plugin will allow you to  customize meta-data for nearly every aspect of your blog including  posts, pages, categories, home page, search pages, author pages, and  even 404 pages. This is a super alternative to All in One SEO Pack, just  not quite as popular.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>4. <strong><a
href="http://wordpress.org/extend/plugins/seo-automatic-links/">SEO  Smart Links</a></strong> – A great little plugin that will allow you to  automatically link specific phrases and keywords in your posts and  comments with corresponding pages on your blog. This one is very handy  to have and a great compliment to All in One SEO Pack.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>5. <strong><a
href="http://wordpress.org/extend/plugins/platinum-seo-pack/">Platinum  SEO Pack</a></strong> – Another good competitor for All in One SEO Pack,  this one will do a lot of the same stuff, and allow you to control 301  redirects for permalink changes, control nofollow, noindex attributes,  and more.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>6. <strong><a
href="http://wordpress.org/extend/plugins/seo-image/">SEO  Friendly Images</a></strong> – A lifesaver for that pesky and annoying  alt tag (for images) that you always seem to forget to add. Alt tags can  make a difference in your search results, and it’s important to  optimize each and every image on your blog. This plugin will make that  process a lot easier.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>7. <strong><a
href="http://wordpress.org/extend/plugins/seo-slugs/">SEO  Slugs</a></strong> – This is a great utility SEO plugin that removes  words like “the”, “a”, “in”, and related words from your post slugs,  which will help improve SEO performance. Some might argue that it  doesn’t matter, but why not play it safe and build the most SEO friendly  post slugs possible?</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>8. <strong><a
href="http://wordpress.org/extend/plugins/seo-watcher/">SEO  Watcher</a></strong> – A fairly new plugin, this one claims to watch  your daily Google rankings for up to 3 keywords and 3 URL’s inside your  WordPress platform. Not a bad idea, but I personally haven’t tested this  one yet. Try it and let us know what you think.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>9. <strong><a
href="http://yoast.com/wordpress/meta-robots-wordpress-plugin/">Meta  Robots Plugin</a></strong> – For an easy solution to adding meta robot  tags to your pages in WordPress, this is the plugin for you. It provides  a whole host of capabilities, from preventing the indexing of subpages  to your homepage, to nofollowing outbound links on your home page.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>10. <strong><a
href="http://www.francesco-castaldo.com/plugins-and-widgets/seo-blogroll/">SEO  Blogroll</a></strong> – A very cool plugin that allows you to take  control over the “links” widget in WordPress and slap a nofollow  attribute on links in your blogroll. Why? Because your blogroll is shown  on every page of your blog, needlessly “leaking” pagerank from every  page on your blog to external sites that you link to.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>11. <strong><a
href="http://blog.fleischer.hu/wordpress/seo-tag-cloud/">SEO Tag Cloud</a></strong> – Whether you love or hate tag clouds, they’re only useful for your  visitors and not for SEO purposes, unless you use this plugin. This  awesome plugin will display a tag cloud using HTML markup, which of  course is SEO friendly.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>12. <strong><a
href="http://wordpress.org/extend/plugins/simple-tags/">Simple Tags</a></strong> – Tagging your posts, whether you know it or not, can play a HUGE part  in how your posts are indexed and the type of traffic you drive into  your blog. Most people don’t know how to properly tag a post, as easy as  it is. This plugin will suggest tags to use for each post that you  write, and it’s a wonderful plugin!</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>13. <strong><a
href="http://urbangiraffe.com/plugins/redirection/">Redirection</a></strong> – This plugin is more of a utility plugin to manage different redirects  and and stuff like that, but as you know, properly managing redirects  and error pages plays a huge part in your SEO efforts, so the more  organized you can be, the better your blog will perform. This plugin  will support Apache and WordPress based redirections.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>14. <strong><a
href="http://wordpress.org/extend/plugins/nofollow-case-by-case/">Nofollow  Case by Case</a></strong> – This plugin will allow you to eliminate the  nofollow attribute from specific comments, and/or allow you to nofollow  specific comments. This is a good way to reward regular contributors  and keep the spamming noobs away.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>15. <strong><a
href="http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/">Google  XML Sitemap Generator</a></strong> – This will be tagged as a must have  plugin for any WordPress blog. Anyone who wants to take advantage of  every aspect of SEO for their blog, including making Google happy by  submitting proper sitemaps, should use this plugin on their blog. It’s  easy to implement and is a bazooka in your plugin arsenal.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><h1><strong>Analytical WordPress Plugins</strong></h1><p>16. <strong><a
href="http://wordpress.org/extend/plugins/google-analyticator/">Google  Analyticator</a></strong> – This plugin makes it easy for you to enable  GA logging on your WordPress blog. Will also show visitor stats and  track all links on pages.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>17. <strong><a
href="http://wordpress.org/extend/plugins/ultimate-google-analytics/">Ultimate  Google Analytics</a></strong> – Just like the plugin above, this will  allow any WordPress blogger to add Javascript  GA code to each page on  your blog without the need to edit your template and potentially screw  up your code.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>18. <strong><a
href="http://yoast.com/wordpress/blog-metrics/">Blog  Metrics</a></strong> – A simple plugin that allows you to see average  number of posts per month per author, average number of words per post,  and some other cool information about your blog that you might want to  have handy.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>19. <strong><a
href="http://www.thunderguy.com/semicolon/wordpress/search-meter-wordpress-plugin/">Search  Meter</a></strong> – A real gem of a plugin, Search Meter allows you to  find out exactly what people are searching for on your blog. If you  have a search box enabled on your blog, you can gain some valuable  insight from the data that this plugin will produce. Find out what your  visitors are searching for the most, and give them more of it!</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>20. <strong><a
href="http://wordpress.org/extend/plugins/google-analytics-for-wordpress/">Google  Analytics For WordPress</a></strong> – A hugely popular plugin, this  awesome tool will track all sorts of analytical information such as  Adsense clicks, image search queries, outbound links, links within  comments, and other helpful data that you might want to have.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>21. <strong><a
href="http://wordpress.org/extend/plugins/statpress/">StatPress</a></strong> – One of my personal favorites, this plugin will provide real-time  analytical information of your blog within your WordPress back-end. It  will show you who is coming to your blog, how long they stay, how they  got there, and so much more. I will not set up a blog without this  plugin – it’s that good.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>22. <strong><a
href="http://wordpress.org/extend/plugins/stats/">WordPress.com  Stats</a></strong> – One of the heavy hitters in the stats plugin  world, this one will show you a multitude of information about your  visitors that you’ll probably want to know. This plugin does require an  API key from WordPress, which can be obtained from WordPress.com.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>23. <strong><a
href="http://wordpress.org/extend/plugins/feed-stats-plugin/">Feedburner  Feed Stats</a></strong> – If you’re lazy like most of us bloggers, you  want the ability to check all of your stats in one central place (like  when you’re logged into WordPress). This plugin will show you your  Feeburner feed stats from your WP admin interface. This is another must  have plugin if you have a sizeable amount of subscribers.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>24. <strong><a
href="http://wordpress.org/extend/plugins/popularity-contest/">Popularity  Contest</a></strong> – Have you ever wanted to know which posts are the  most popular on your blog? This plugin gives a weighting to each post  based on several different factors and ranks them in a nice list of most  popular posts. This is a nice one to have for visitors to find your  best articles, which of course in turn will make them even more popular!</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>25. <strong><a
href="http://wordpress.org/extend/plugins/statbadge/">StatBadge</a></strong> – A simple plugin that displays different metrics in your sidebar like  Alexa ranking, number of comments, Pagerank, and related data that you  can show off to your visitors (and to yourself).</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><h1><strong>Anti-Spam WordPress Plugins</strong></h1><p>26. <strong><a
href="http://akismet.com/">Akismet</a></strong> – This  one is a no-brainer. Akismet is the gold standard in spam fighting  WordPress plugins. It is one of two plugins included in the default  WordPress installation, so that should tell you something right there.  Every blog should have this enabled, without a doubt!</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>27. <strong><a
href="http://wordpress.org/extend/plugins/bad-behavior/">Bad Behavior</a></strong> – This anti-spam plugin will block link spam with a PHP-based system.  This awesome plugin is like a personal bodyguard for your blog, and will  stop spammers dead in their tracks.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>28. <strong><a
href="http://unknowngenius.com/blog/wordpress/spam-karma/">Spam Karma  2.3</a></strong> – Although this plugin is no longer being supported or  developed, it’s still very much worthy of mentioning on this list. I’ve  used Spam Karma for years, and have rarely had a spam comment get by  without SK shooting it down. Get it while it’s still available!</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>29. <strong><a
href="http://wordpress.org/extend/plugins/email-spam-protection/">Email  Spam Protection</a></strong> – This spam fighter will convert email  addresses (such as yours) that are posted on your blog to an  un-scrapeable JavaScript one. A simple plugin, but useful if you drop  your email address a lot.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>30. <strong><a
href="http://wordpress.org/extend/plugins/peters-custom-anti-spam-image/">Peter’s  Custom Anti-Spam</a></strong> – I only added this one because it  appears that it gets a lot of downloads, so something must be good with  it! This just appears to be another anti-spam plugin for your WordPress  blog, so it doesn’t hurt to mention it.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>31. <strong><a
href="http://wordpress.org/extend/plugins/wp-spamfree/">WP-SpamFree  Anti-Spam</a></strong> – This is another anti-spam powerhouse (like  Akismet). If you want to try out a plugin that does not allow any spam  comments (including trackback and pingback spam) on your blog, this is  the one for you.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><h1><strong>Social Media WordPress Plugins</strong></h1><p>32. <strong><a
href="http://wordpress.org/extend/plugins/add-to-any/">Add  to Any</a></strong> – This plugin will allow you to add a cool widget  which will make it easy for your readers to bookmark your posts to all  the big social bookmarking/social media sites. There are quite a few of  these types of plugins, but this is one of the more popular ones.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>33. <strong><a
href="http://wordpress.org/extend/plugins/social-bookmarking-reloaded/">Social  Bookmarking RELOADED</a></strong> – This is another plugin that will  allow your visitors to bookmark your articles to a multitude of social  bookmarking sites.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>34. <strong><a
href="http://wordpress.org/extend/plugins/twitter-tools/">Twitter Tools</a></strong> – This plugin will allow you to seamlessly integrate your blog and your  Twitter account which will help drive traffic to your blog from your  Twitter updates.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>35. <strong><a
href="http://wordpress.org/extend/plugins/twitter-for-wordpress/">Twitter  For WordPress</a></strong> – For a quick and easy way to show your  latest tweets on your WordPress blog, this is the plugin to use. It’s  easy to install and a must have if you maintain an active Twitter  timeline.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>36. <strong><a
href="http://eightface.com/wordpress/flickrrss/">flickrRSS  for WordPress</a></strong> – One of the hottest flickr plugins ever,  this will allow you to pull in photos from any flickr RSS feed right  into your blog. This can be customized and made to look extremely nice,  providing a perfect way to show off your photog skills to your readers!</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>37. <strong><a
href="http://wordpress.org/extend/plugins/add-to-facebook-plugin/">Add  To Facebook</a></strong> – This is a simple plugin that adds a footer  link which will allow you and your visitors to add your post to their  Facebook page.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>38. <strong><a
href="http://wordpress.org/extend/plugins/facebook-dashboard-widget/">Facebook  Dashboard Widget</a></strong> – Wow, finally another lazy blogger  developed a solution for us WordPress bloggers to check our Facebook  data within WordPress! Install this and save yourself from having to  visit Facebook.com several times per day.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>39. <strong><a
href="http://wordpress.org/extend/plugins/sociable/">Sociable</a></strong> – Easily my favorite bookmarking plugin, Sociable is good at updating  information and will easily and attractively allow your readers to  bookmark your articles across many different sites.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>40. <strong><a
href="http://wordpress.org/extend/plugins/friendfeed-comments/">FriendFeed  Comments</a></strong> – Great plugin for FriendFeed fans that will  allow you to integrate Friendfeed information on your blog.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>41. <strong><a
href="http://wordpress.org/extend/plugins/follow-me/">Follow  Me Plugin</a></strong> – This convenient plugin will give your readers a  chance to follow all of your social media profiles from one easy place.  This one is great if you maintain an active presence across various  social media sites.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>42. <strong><a
href="http://wordpress.org/extend/plugins/tweetmeme/">Tweetmeme</a></strong> – This is a hugely popular plugin that will put a little “retweet”  button in your blog posts (like you see for the posts on this blog)  which easily allows readers to quickly retweet your post. Obviously, it  helps to increase the chance of a post going viral on Twitter, which  will lead to a boost in traffic and exposure. This is a must have, in my  opinion.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>43. <strong><a
href="http://wordpress.org/extend/plugins/linkedin-hresume/">LinkedIn  hResume</a></strong> – This interesting plugin (which I haven’t tried)  claims that it will pull the hResume microformat block from your  LinkedIn page right into any page in your WordPress blog.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>44. <strong><a
href="http://wordpress.org/extend/plugins/wp-greet-box/">WP Greet Box</a></strong> – This incredibly useful plugin will actually greet users with a custom  reminder depending on how they arrived to your blog. (Example, if they  came from Twitter, it will remind them to follow you on Twitter and to  retweet the post.) Awesome plugin to say the least.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><h1><strong>Internet Marketing wordpress plugins</strong></h1><p>45. <strong><a
href="http://wordpress.org/extend/plugins/adsense-manager/">Adsense  Manager</a></strong> – This plugin will make it easy to add Adsense  advertising into your blog posts, and allow you to determine when they  will and will not appear. Great for anyone that likes to run ads to make  a little extra cash.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>46. <strong><a
href="http://wordpress.org/extend/plugins/all-in-one-adsense-and-ypn/">All  in One Adsense and YPN</a></strong> – Another popular plugin that  allows you to manage all aspects of adding in Adsense and Yahoo! ads  into your blog. The ad code is dynamically inserted, so it requires no  manual work.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>47. <strong><a
href="http://firepow.com/v1/split-test-plugin-for-wordpress-is-here/">Split  Test Plugin</a></strong> – A very unique plugin that allows you to show  two different versions of a particular post, and see which one  generates more clicks. This would be good for those that promote  affiliate products in WordPress posts.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>48. <strong><a
href="http://wordpress.org/extend/plugins/affiliate-link-cloaker/">Affiliate  Link Cloaker</a></strong> – For those of you that include Amazon  affiliate links or whatever site you like to promote, you know that  usually affiliate links are pretty nasty looking. This link cloaker will  change that, and also help prevent affiliate link hijacking.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>49. <strong><a
href="http://wordpress.org/extend/plugins/wp-affiliate/">WP-Affiliate</a></strong> – Another great link cloaking plugin that is quite popular.</p><p>50. <strong><a
href="http://wordpress.org/extend/plugins/random-ads/">Random/Rotating  Ads</a></strong> – This plugin will make it extremely easy for you to  show and/or rotate a variety of ads (Adsense, affiliate ads, banners,  flash, etc…) using widgets or in your template files for your blog. This  seems like a very convenient plugin for the “make money online” crowd.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>51. <strong><a
href="http://www.prestogifto.com/plugin-wp">CafePress  Plugin</a></strong> – This plugin allows you to easily integrate any of  CafePress.com’s millions of products and customize the layout of them  for your visitors. For those that promote CafePress products, this is a  very good plugin.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><h1><strong>Contact Form WordPress Plugins</strong></h1><p>52. <strong><a
href="http://wordpress.org/extend/plugins/contact-form-7/">Contact Form 7</a></strong> – One of many contact form plugins for WordPress. This one is easy to  work with and will get the job done. This just seems to be the more  popular choice.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>53. <strong><a
href="http://wordpress.org/extend/plugins/wp-contact-form/">WP Contact  Form</a></strong> – You can drop this form into any page or post on your  WordPress blog. Very easy to use.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>54. <strong><a
href="http://wordpress.org/extend/plugins/wp-contact-form-iii/">WP  Contact Form III</a></strong> – This contact form is simple, secure, and  easy to customize.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>55. <strong><a
href="http://wordpress.org/extend/plugins/enhanced-wordpress-contactform/">Enhanced  WP Contact Form</a></strong> – This plugin is simple, good against  spam, and gives the user an option to copy him/herself on the form  submission.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><h1><strong>Video Related WordPress Plugins</strong></h1><p>56. <strong><a
href="http://wordpress.org/extend/plugins/vipers-video-quicktags/">Viper’s  Video Quicktags</a></strong> – This is an extremely popular WordPress  plugin that will make it easy for any blogger to quickly insert video  from sites like YouTube, Google Video, and more. This is typically  considered a must have for your WordPress blog.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>57. <strong><a
href="http://wordpress.org/extend/plugins/smart-youtube/">Smart YouTube</a></strong> – Again, this is a plugin that makes it easy to insert YouTube videos  into your post, comments, and even your RSS feeds. This supports the  playback of HQ (high quality) videos as well.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>58. <strong><a
href="http://wordpress.org/extend/plugins/lightview-plus/">Lightview  Plus</a></strong> – If you’d like to overlay videos/images into a  lightbox format, this is the plugin to use.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>59. <strong><a
href="http://wordpress.org/extend/plugins/wp-swfobject/">WP-SWFObject</a></strong> – For all of you flash freaks, or for those that need the ability to  add flash movies into their blog, this plugin was created solely for  that purpose.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>60. <strong><a
href="http://wordpress.org/extend/plugins/embedded-video-with-link/">Embedded  Video</a></strong> – Another popular plugin that allows you to easily  add video to your WordPress posts or pages.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>61. <strong><a
href="http://wordpress.org/extend/plugins/wordpress-video-plugin/">WordPress  Video Plugin</a> </strong>– Hard to get creative for the description,  as it does the same thing as most of the video plugins above. This one  seems to support quite a few video sites though, so that could be a  plus!</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>62. <strong><a
href="http://wordpress.org/extend/plugins/kaltura-interactive-video/">Interactive  Video Plugin</a></strong> – This one is unique in the fact that it  allows you to record/import/upload videos directly into your post and  edit and remix with an online video editor. I haven’t used this one, but  thought it was unique enough to add to this section.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><h1><strong>Various Utility WordPress Plugins</strong></h1><p>63. <strong><a
href="http://lesterchan.net/wordpress/readme/wp-useronline.html">WP-UserOnline</a></strong> – This is a really cool plugin that will add a widget to your sidebar  that shows how many users are on your site in real-time. It’s great to  watch when a post gets stumbled or bookmarked, the user count rises  immediately!</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>64. <strong><a
href="http://wordpress.org/extend/plugins/close-old-posts/">Close Old  Posts</a></strong> – This is a great plugin because as your posts get  older and gain PageRank from Google, spammers will target them like  crazy to try and get their links posted without you knowing it. This  plugin allows the automatic closing of old posts for a time that you  specify.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>65. <strong><a
href="http://jonas.rabbe.com/archives/2005/05/08/super-archives-plugin-for-wordpress/">Super  Archives</a></strong> – This plugin will take your current archive  setup and inject it with steroids. Details can be found on their page.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>66. <strong><a
href="http://mnm.uib.es/gallir/wp-cache-2/">WP-Cache</a></strong> – This is almost an essential plugin these days with all of the social  bookmarking sites out there. What this does is prevent your site from  going down after getting popular on any of the big social bookmarking  sites like Digg and Reddit. It makes your blog run faster and more  efficient as well.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>67. <strong><a
href="http://wordpress.org/extend/plugins/yet-another-related-posts-plugin/">Yet  Another Related Posts Plugin</a></strong> – As the title says, this  plugin will show related posts under your posts. This has several  benefits including better SEO, and driving up pageviews as visitors are  encouraged to check out the related posts.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>68. <strong><a
href="http://wordpress.org/extend/plugins/wp-table/">WP-Table</a></strong> – This is a handy plugin that will easily allow you to create tables  for your posts in a fixed table format.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>69. <strong><a
href="http://txfx.net/code/wordpress/subscribe-to-comments/">Subscribe  To Comments</a></strong> – This is a very popular plugin that you’ve  probably seen on many blogs. It provides a little check box for visitors  to check if they want updates on a particular comment string.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>70. <strong><a
href="http://techie-buzz.com/wordpress-plugins/wordpress-automatic-upgrade-plugin-update.html">WordPress  Automatic Upgrade</a></strong> – Tired of seeing that “you need to  update your version of WordPress” message in your WP interface? Well,  install this one-click upgrade plugin and it will upgrade you to the  latest and greatest version of WordPress.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>71. <strong><a
href="http://adambrown.info/b/widgets/kb-robots-txt/">KB  Robots.txt</a></strong> – If you want total control over your  robots.txt information, then you’ll need this plugin.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>72. <strong><a
href="http://wordpress.org/extend/plugins/nextgen-gallery/">NextGen  Gallery</a></strong> – Any plugin that makes it to the “most popular”  category on WordPress.com is worthy of mentioning, especially this one.  This plugin is a fully integrated image gallery with a flash slideshow  option. You’ll see this on MANY blogs.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>73. <strong><a
href="http://wordpress.org/extend/plugins/global-translator/">Global  Translator</a></strong> – A lot of bloggers forget that not everyone in  the world speaks/understands English. This translator has the capability  to translate your posts into 34 different languages, which will surely  please most of your visitors.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>74. <strong><a
href="http://wordpress.org/extend/plugins/wp-pagenavi/">WP-PageNavi</a></strong> – This plugin is built into a lot of premium themes, and for good  reason. It enhances your page navigation for your blog, making it easier  for readers to advance through your posts with ease.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>75. <strong><a
href="http://www.justinshattuck.com/2007/03/19/comment-relish-wordpress-plugin/">Comment  Relish</a></strong> – One of my favorite plugins, this sends a custom  email to a reader after the first time they comment on your blog. A  FANTASTIC way to get them to subscribe, or even buy something. Easy way  to do some shameless plugging.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p><span
style="color: #808000"><br
/> </span></p><p>76. <strong><a
href="http://wordpress.org/extend/plugins/wp-polls/">WP-Polls</a></strong> – The time will come in your blogging career where you want to poll  your readers on something. Readers typically love polls, and to manage  the whole process, this is the plugin you’ll need to use.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>77. <strong><a
href="http://wordpress.org/extend/plugins/wp-e-commerce/">WP e-Commerce</a></strong> – This plugin will give you the ability to transform your WP blog into  an attractive shopping cart enabled, e-commerce solution. This is a  great plugin if you sell products or services online.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>78. <strong><a
href="http://wordpress.org/extend/plugins/feedwordpress/">FeedWordPress</a></strong> – With this RSS aggregation plugin, you can pull in feeds of your  choice right to your blog. This makes a great way to showcase feeds from  popular blogs in your niche, or perhaps other blogs that you own.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>79. <strong><a
href="http://wordpress.org/extend/plugins/front-page-excluded-categories/">Front  Page Excluded Categories</a></strong> – If you’re looking for a quick  and easy way to exclude certain categories on your blog’s home page,  this is an easy way to accomplish that.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>80. <strong><a
href="http://wordpress.org/extend/plugins/wp-db-backup/">WP-DB-Backup</a></strong> – If you’ve ever lost access to your db or if something has ever  crashed on your where you lost all your blog’s information, you’ll  appreciate this plugin beyond words. This should be included as a  default plugin for every WordPress installation.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>81. <strong><a
href="http://wordpress.org/extend/plugins/broken-link-checker/">Broken  Link Checker</a></strong> – A great utility plugin that will  automatically check your blog for broken links and notify you if any are  found. This is a very handy plugin to have installed.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p><span
style="color: #808000"><span
style="color: #000000">82. <strong><a
href="http://wordpress.org/extend/plugins/advertising-manager/">Advertising  Manager</a></strong> – Another ad management program that is</span> </span>really  popular, as it recognizes ads from a wide variety of networks (Google  Adsense, AdBrite, CrispAds, Chitika, etc…).</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>83. <strong><a
href="http://wordpress.org/extend/plugins/wp-postviews/">WP-PostViews</a></strong> – If you’re like me and need an ego inflation every once in a while,  adding this plugin to your blog will show how many views each post on  your blog has received.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>84. <strong><a
href="http://wordpress.org/extend/plugins/wordpress-mobile-edition/">WordPress  Mobile Edition</a></strong> – This should be on every bloggers list, as  the amount of mobile internet users increases by the day, you need to  make sure your blog is accessible by all the iPhone and Blackberry  freaks out there. This sector could make up a noticeable percentage of  your users, so keep them happy by installing this.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>85. <strong><a
href="http://wordpress.org/extend/plugins/search-everything/">Search  Everything</a></strong> – This is another plugin that will enhance the  ability of your WordPress search box on your blog.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>86. <strong><a
href="http://wordpress.org/extend/plugins/disable-wordpress-plugin-updates/">Disable  WordPress Plugin Updates</a></strong> – If you’re like most bloggers,  you’ll agree when I tell you that the plugin updates messages are quite  annoying. This awesome plugin will get rid of that problem for you.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>87. <strong><a
href="http://wordpress.org/extend/plugins/events-calendar/">Events  Calendar</a></strong> – If you need an enhanced version of the default  WP calendar widget, then you’ll want to check out this plugin. It allows  for the integration of a high organized calendar to post events and  related items.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>88. <strong><a
href="http://wordpress.org/extend/plugins/exec-php/">Exec-PHP</a></strong> – Sometimes you’ll find that you need to add PHP code (for certain  widgets and such) straight into a post or page. By default, you can’t do  this, but with Exec-PHP, you can.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>89. <strong><a
href="http://wordpress.org/extend/plugins/commentluv/">CommenLuv</a></strong> – This is another plugin that you’ll see on many, many blogs. What it  does is reward your readers when they comment by linking back to their  latest blog posts, recent tweets or digs, which they can choose from  when they submit a comment on your blog. It encourages more commenting,  and is a win-win situation for you and the reader.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>90. <strong><a
href="http://wordpress.org/extend/plugins/wp-o-matic/">Wp-o-Matic</a></strong> – For all of you wannabe spam bloggers out there, WP-o-Matic allows you  to create blog posts out of specified RSS feeds.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>91. <strong><a
href="http://wordpress.org/extend/plugins/wp-super-edit/">WP Super Edit</a></strong> – If you’re not satisfied with the default WYSIWYG WP editor, this is  an enhanced version that will give you a bit more control and more  options when editing a post.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>92. <strong><a
href="http://wordpress.org/extend/plugins/scissors/">Scissors</a></strong> – This is a great image handling plugin that will make it possible for  you to rotate, crop, and resize images right inside WordPress. This can  boost efficiency by allowing you to bypass the time it takes to edit an  image before posting it.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>93. <strong><a
href="http://redalt.com/Resources/Plugins/Role+Manager">Role Manager</a></strong> – This plugin will allow you to handle different user levels and allow a  more detailed set of user permissions for each user. This is great if  you have a blog that has multiple contributors with multiple roles.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>94. <strong><a
href="http://kimmo.suominen.com/sw/timezone/">Time  Zone</a></strong> – No matter what, it seems that even though you set  your timezone correctly in the WP admin interface, it’s still an hour  off. This can be quite annoying when scheduling posts for the future.  This is because WP doesn’t recognize DST (daylight savings time). This  plugin will fix that little annoying problem.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>95. <strong><a
href="http://harper.wirelessink.com/2007/01/09/wordpress-ultimate-gamers-pack/">WP  Ultimate Gamer’s Pack</a></strong> – If you have a need for your users  to be able to view your site with their Wii’s, DS-Lite’s, or PSP’s, then  you need this plugin to make that happen.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>96. <strong><a
href="http://ma.tt/2006/06/wordpress-no-www/">No WWW  plugin</a></strong> – For SEO purposes, it’s essential that you have  everyone going to the same post URL, and if you don’t have this plugin  enabled, some people might arrive to the WWW version of your post, and  some the non WWW version. This plugin will make sure everyone arrives at  the right one.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>97. <strong><a
href="http://www.raproject.com/wordpress/wp-ajax-edit-comments/">WWP  Ajax Edit Comments</a></strong> – If you’ve ever left a comment on a  blog with a humiliating typo or error, you’ll have wished that the blog  had this cool plugin enabled. This plugin will allow your users to  quickly edit a comment after submitting it. Trust me, they’ll love this  option.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>98. <strong><a
href="http://wordpress.org/extend/plugins/lifestream/">Lifestream</a> </strong>– This is another popular plugin that will display your social  networking feeds and images on your blog in the sidebar or in widget  format.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>99. <strong><a
href="http://www.blogtrafficexchange.com/old-post-promoter/">Old Post  Promoter</a></strong> – This is a fantastic plugin that will help  promote those golden oldies you have in your archives. This will lead to  more pageviews and return readers. Very clever and very useful plugin  to say the least.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p>100. <strong><a
href="http://wordpress.org/extend/plugins/sem-author-image/">Author  Image</a></strong> – For those bloggers that like to show off their  pretty faces (who doesn’t? lol), use this plugin to display author  images in posts and on pages in your blog. This is actually a great way  to boost brand exposure.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span><br
/> I hope you’ve enjoyed this awesome list of WordPress plugins.<br
/> Thank You!</p> ]]></content:encoded> <wfw:commentRss>http://wordpressapi.com/2010/06/26/amazing-100-plugins-wordpress/feed/</wfw:commentRss> <slash:comments>5</slash:comments> </item> <item><title>WordPress Plugins for RSS Feed Subscribers</title><link>http://wordpressapi.com/2010/06/20/wordpress-plugins-rss-feed-subscribers/</link> <comments>http://wordpressapi.com/2010/06/20/wordpress-plugins-rss-feed-subscribers/#comments</comments> <pubDate>Sun, 20 Jun 2010 08:27:52 +0000</pubDate> <dc:creator>Sony</dc:creator> <category><![CDATA[Wordpress Plugins]]></category> <category><![CDATA[news]]></category> <category><![CDATA[seo]]></category> <category><![CDATA[technology]]></category> <category><![CDATA[tutorials]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[wordpress api]]></category> <category><![CDATA[wordpress tutorials]]></category> <category><![CDATA[feed]]></category> <category><![CDATA[rss feed]]></category> <category><![CDATA[wordpress plugins]]></category> <category><![CDATA[wordpress tips]]></category><guid
isPermaLink="false">http://wordpressapi.com/?p=3380</guid> <description><![CDATA[Category Specific RSS feed Subscription This WordPress Plugin allows you to present a menu with multiple RSS feed subscription option to your site&#8217;s visitors in addition to your normal RSS subscription option. If your site covers multiple topics then your subscribed readers may get annoyed when you update your site with content that they are.....]]></description> <content:encoded><![CDATA[<h2><a
href="http://wordpressapi.com/files/rss-scri.jpg"><img
class="alignnone size-full wp-image-3381" title="rss-scri" src="http://wordpressapi.com/files/rss-scri.jpg" alt="" width="590" height="330" /></a></h2><h2>Category Specific RSS feed Subscription</h2><p>This WordPress Plugin allows you to present a menu with multiple RSS feed subscription option to your site&#8217;s visitors in addition to your normal RSS subscription option.</p><p>If your site covers multiple topics then your subscribed readers may get annoyed when you update your site with content that they are not interested in and they get a notification in their RSS reader.</p><p>I found that most of the time I never subscribe to a site&#8217;s RSS feed when it doesn&#8217;t have the topic/category specific subscription option, specially when the site covers multiple topics cause I don&#8217;t like to be hammered with all the unwanted content updates.</p><p>This plugin allows you to configure up to 8 different topic specific RSS feeds.</p><p><a
href="http://wordpress.org/extend/plugins/category-specific-rss-feed-menu/">http://wordpress.org/extend/plugins/category-specific-rss-feed-menu/</a></p><h2>WWSGD Plugin</h2><p>This plugin which uses name of one of the top web celebrity Seth  Godin,  allows you to display a subscription reminder message above or  below  blog post.</p><p>You can control position &amp; content of message. Also you can   customize if message is to be displayed always for only or few initial   page views.</p><p><a
href="http://www.richardkmiller.com/blog/wordpress-plugin-what-would-seth-godin-do" target="_blank">What Would Seth Godin Do</a></p><h2>Vertically scroll rss feed</h2><p>his plug-in will scroll the RSS feed title vertically in site sidebar, admin can add/update the RSS link &amp; style via widget management. Internet connection is required to load third party RSS.</p><ol><li>Easy installation.</li><li>Widgets, so you can add pretty much anything.</li><li>Easy style-override system.</li></ol><p>Click on the configure button (small down triangle) for the &#8216;Scroll RSS Feed&#8217; widget and here you can customize all the Scroll RSS Feed front end styles.</p><p><a
href="http://wordpress.org/extend/plugins/vertically-scroll-rss-feed/">http://wordpress.org/extend/plugins/vertically-scroll-rss-feed/</a></p><h2>Show RSS Feeds</h2><p>Displays RSS feed in templates</p><p><a
href="http://wordpress.org/extend/plugins/show-rss/">http://wordpress.org/extend/plugins/show-rss/</a></p><h2>Feed Widget Plugin</h2><p>This plugin will add a WordPress widget, which will display links to  various relevant feeds for your WordPress blog. It will always at least  display links to the two standard feeds: All Entries and All Comments.  It will also display links to category feeds, post feeds or search  feeds, depending on the current page being viewed.</p><p>I used this long time back. But now this blog have three top level  feeds, so I guess using this plugin here will result in too many  options. I will definitely add this plugin to my orkutfeeds blog.</p><p><a
href="http://ketsugi.com/software/wordpress/feeds-widget-for-wordpress/" target="_blank">Feed Widget Plugin </a></p><h2>JP&#8217;s Get RSS Feed</h2><p>This plugin uses WordPress&#8217; ability to return feeds, to get the last X number of items from a given RSS feed. Display the last few items from any RSS feed of your choice. For example, your Twitter feed, or another blog or forum that outputs a RSS feed. Any RSS feed can be grabbed. Call it in your footer to list your last few tweets, and your sidebar to showcase content from another one of your blogs.</p><p>Uses fetch_feed, which was introduced in WordPress 2.8. Works and tested in WordPress 2.9.</p><p><a
href="http://wordpress.org/extend/plugins/jps-get-rss-feed/">http://wordpress.org/extend/plugins/jps-get-rss-feed/</a></p><h2>URL Absolutifier WordPress Plugin</h2><p>URL Absolutifier changes all relative URLs in posts to absolute  URL, to make the entries work in feed readers that don’t work with  relative URLs.</p><p>I used a relative URL trick for higher earnings  from AdSense product referrals long time back. If you are not sure about  your usage of relative URLs then I will strongly recommend you should  activate this plugin and then just forget it. I really feel this should  be default behavior of wordpress.</p><p><a
href="http://scott.yang.id.au/code/url-absolutifier/" target="_blank">URL Absolutifier  WordPress Plugin</a></p><h2>Full Text Feeds</h2><p>There was a bug in wordpress which used to cut your feeds in the middle of the post. This behavior used to annoy blogger who like to publish full text feeds.</p><p>I am not sure if this bug is fixed in latest version of wordpress as I have modified wordpress core feed files completely when applying firefox full feed hack.</p><p>Anyway, if you see partial feeds even after choosing option to display full feeds, you can use this plugin to overcome wordpress bug.</p><p><a
href="http://wordpress.org/extend/plugins/full-text-feed/" target="_blank"> Full Text Feed Plugin </a></p><h2>RSS FEED anywhere</h2><p>You only have to place the swf-file on a server (free-hosting..) and edit the embed-Tag. Finished! With the proxy-feature, you are allowed, to feed your RSS-Stream from anywhere. (Myspace etc.)</p><p>You also can get your RSS-Feed from free hosts wordpress.com blogs. (without upload or edit the template files or stuff like that.) You dont have to place a crossdomain.xml (thats useful, because in some cases thats not possible: if you dont have enough permissions.. etc) on your Server! (you can, if you want to disable the proxy-function. But you dont have to! <img
src='http://wordpressapi.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )</p><p><a
href="http://wordpress.org/extend/plugins/rss-feed-anywhere/">http://wordpress.org/extend/plugins/rss-feed-anywhere/</a></p><p>FeedBurner FeedSmith Plugin</p><p>If you use FeedBurner and love its  subscriber count chicklet, then this plugin is must for you.</p><p>WordPress  have lots of feed formats and most probably you had burnt only one of  them with FeedBurner. Now if a user access your wordpress feeds via  other URLs then their subscription will not be counted towards  FeedBurner count.</p><p>This plugin will take care of this. You just  give it your FeedBurner URLs and it will redirect all wordpress custom  feed requests to your FeedBurner feed.</p><p>Originally developed by  Steve Smith, this plugin is now officially maintained by FeedBurner.</p><p><a
href="http://www.google.com/support/feedburner/bin/answer.py?answer=78483&amp;topic=13252" target="_blank">FeedBurner FeedSmith Plugin </a></p><h2>Feed Footer Plugin</h2><p>This plugin allow you to customize footer text of each post in feed completely. I use this to show referral ads in my feeds. Please do not try AdSense or any JavaScript code in Feed Footer. It will not work as feed readers ignores JavaScript.</p><p>This plugin is really basic, but I don’t mind taking some efforts for some extra bucks.</p><p><a
href="http://www.blogclout.com/blog/goodies/feed-footer-plugin/" target="_blank">Feed Footer Plugin </a></p><h2>RSS Footer</h2><p>This is very simple plugin. It allows you to  insert any message including HTML code into the feeds. You can also  choose if added message is to be displayed at top or bottom of the post.</p><p>You  can use this plugin for advertising instead of above Feed footer  plugin. Main difference is, RSS Footer adds same footer at the end of  every post, while above Feed footer allows you to add different footer  for each post.</p><p>One plus point with RSS footer is, it allows  addition of link back to your original post, which is good SEO as  explained by Daniel Scocco.</p><p><a
href="http://wordpress.org/extend/plugins/rss-footer/" target="_blank">RSS Footer Plugin </a></p><h2>Similar Posts for Feeds Plugin</h2><p>Many time, by giving full text feeds, blogger feel they are loosing page-views as a reader may never check their blog.</p><p>I use backlinking to my old posts whenever possible to bring readers back to the blog. But often such links go unnoticed or you may not find old post to link back if you are writing on a new topic.</p><p>Then its always good idea to display few related posts at the bottom which often attracts clicks. Of course too many links may annoy your reader. So do not show something like 20 related post!</p><p><a
href="http://rmarsh.com/plugins/similar-posts/" target="_blank">Similar Posts </a></p> ]]></content:encoded> <wfw:commentRss>http://wordpressapi.com/2010/06/20/wordpress-plugins-rss-feed-subscribers/feed/</wfw:commentRss> <slash:comments>6</slash:comments> </item> <item><title>Ten wordpress plugins for improve the User interactivity and experience</title><link>http://wordpressapi.com/2010/06/20/ten-wordpress-plugins-for-improve-the-user-interactivity-and-experience/</link> <comments>http://wordpressapi.com/2010/06/20/ten-wordpress-plugins-for-improve-the-user-interactivity-and-experience/#comments</comments> <pubDate>Sun, 20 Jun 2010 07:22:51 +0000</pubDate> <dc:creator>Sony</dc:creator> <category><![CDATA[Wordpress Plugins]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[wordpress tutorials]]></category> <category><![CDATA[wordpress plugins]]></category> <category><![CDATA[wordpress tips]]></category><guid
isPermaLink="false">http://wordpressapi.com/?p=3376</guid> <description><![CDATA[When you are developing the website or blog using wordpress. You need to think about readers experience on your website. Keeping user experience in mind I created the list of wordpress plugins which are very useful for user interactivity and experience. 1. WP-Print This Plugin displays a printable version of your blog when the reader.....]]></description> <content:encoded><![CDATA[<p>When you are developing the website or blog using wordpress. You need to think about readers experience on your website. Keeping user experience in mind I created the list of wordpress plugins which are very useful for user interactivity and experience.</p><h1>1. WP-Print</h1><p>This Plugin displays a printable version  of your <a
id="KonaLink1" href="http://www.johntp.com/2007/08/21/top-10-wordpress-plugins-to-improve-readers-experience/#" target="undefined"><span
style="color: #2277dd">blog</span></a> when the reader  requests for it.  The user can directly take a print out from it. The  documentation can be found <a
href="http://www.lesterchan.net/wordpress/readme/wp-print.html">here</a>.</p><p>There is also another <a
href="http://developer.tabblo.com/index.php/hp-blog-printing/"> print  widget by HP</a>. This adds a print option to your blog posts. This  plugin is available for WordPress and Movable type. This plugin can also  convert blog posts into PDF files.</p><p><a
href="http://lesterchan.net/portfolio/programming.php">Download WP-Print</a></p><h2>2. <strong>Convert to PDF</strong></h2><p>Converting your blog posts into  PDF is useful when your blog has more content on tutorials and tips  &amp; tricks. Amit has written a <a
href="http://labnol.blogspot.com/2007/06/add-as-pdf-button-to-your-websites-and.html">post</a> on how to save the blog posts to PDF file. Adding a “Save as PDF”  button is really simple process. All you need is to add this link at the  end of blog posts (for WordPress users).</p><blockquote><p>http://savepageaspdf.pdfonline.com/pdfonline/pdfonline.asp?cURL=&lt;?php  the_permalink();?&gt;</p></blockquote><p>Blogger users can update the cURL link with the post permalink. This  generates a <a
id="KonaLink2" href="http://www.johntp.com/2007/08/21/top-10-wordpress-plugins-to-improve-readers-experience/#" target="undefined"><span
style="color: #2277dd">PDF file</span></a> which can be saved to  hard disk.</p><h2>3. <strong>Related Posts</strong></h2><p><strong> </strong> As the name indicates, this plugin  will show the related entries for a particular post based on keyword  matching.</p><p><a
href="http://wasabi.pbwiki.com/Related%20Entries">Download  Related Posts</a></p><h2>4. <strong>WP-Email</strong></h2><p>This Plugin helps readers to share  posts on   blogs which they liked with their friends or even to their  email. The   plugin is easy to use and configure. The documentation can be  found <a
href="http://lesterchan.net/wordpress/readme/wp-email.html">here</a>.</p><p><a
href="http://lesterchan.net/portfolio/programming.php">Download   WP-Email</a></p><h2>5. <strong>Subscribe to Comments</strong></h2><p>Subscribe to Comments 2.1  is a plugin that allows commentators on your blog to check a box before  commenting and get e-mail notification of further comments. This is  useful to have a good discussion going on in your posts.</p><p><a
href="http://txfx.net/code/wordpress/subscribe-to-comments/">Download  Subscribe to Comments</a></p><h2>6. <strong>Popular Contest / Top Posts by Category</strong></h2><p><a
href="http://alexking.org/projects/wordpress/">Popularity contest</a> will help you see which of your posts are most popular and the Top posts  plugin displays your top rated posts categorywise based on comments or  page views.</p><p><a
href="http://www.macalua.com/2007/02/01/top-posts-by-category-plugin/">Download  Top Posts by Category</a></p><h2>7. <strong>Related posts in your Feed</strong></h2><p>This WordPress plugin  adds a list of Related Posts to your full text feed. For this plugin to  work properly you need Related Posts plugin or <a
href="http://www.neato.co.nz/ultimate-tag-warrior/">Ultimate Tag Warrior</a></p><p>plugin activated.</p><p><a
href="http://www.solo-technology.com/apps.html">Download  Related posts in your Feed</a></p><h2>8. qTranslate</h2><p><a
href="http://wordpressapi.com/files/qTranslate-www.qianqin.de_1277018196189.png"><img
class="alignnone size-full wp-image-3378" title="qTranslate - www.qianqin.de_1277018196189" src="http://wordpressapi.com/files/qTranslate-www.qianqin.de_1277018196189.png" alt="" width="381" height="326" /></a></p><p>Multilingual support is one of the biggest missing features of  WordPress, but with qTransalate you can easily accomplish the task of  managing different languages for your blog site.</p><p><a
href="http://www.qianqin.de/qtranslate/">http://www.qianqin.de/qtranslate/</a></p><div>Link: <a
href="http://www.masternewmedia.org/30-cool-wordpress-plugins-for-web-publishers/#ixzz0rNIj5DFa">http://www.masternewmedia.org/30-cool-wordpress-plugins-for-web-publishers/#ixzz0rNIj5DFa</a></div><h2>9. Contact Form 7</h2><p>Even though there are tens of contact form plugins out there, I’ve  always liked Contact Form 7. The problem with most contact form plugins  is that either they are too simple or way too complex. Contact Form 7,  on the other hand, is extensible yet easy-to-use. It supports  Ajax-powered submitting, multiple forms, CAPTCHAS, and <a
href="http://akismet.com/">Akismet</a> spam filtering.</p><p><a
href="http://wordpress.org/extend/plugins/contact-form-7/">http://wordpress.org/extend/plugins/contact-form-7/</a></p><p>Link: <a
href="http://www.masternewmedia.org/30-cool-wordpress-plugins-for-web-publishers/#ixzz0rNIybFzW">http://www.masternewmedia.org/30-cool-wordpress-plugins-for-web-publishers/#ixzz0rNIybFzW</a></p><h2>10. Display Thumbnails For Related Posts in WordPress</h2><p>by adding thumbnails to related posts using the popular YARPP plugin and  WordPress custom fields<br
/> <a
href="http://buildinternet.com/2009/07/display-thumbnails-for-related-posts-in-wordpress/" target="_blank">http://buildinternet.com/2009/07/display-thumbnails-for-related-posts-in-wordpress/</a></p> ]]></content:encoded> <wfw:commentRss>http://wordpressapi.com/2010/06/20/ten-wordpress-plugins-for-improve-the-user-interactivity-and-experience/feed/</wfw:commentRss> <slash:comments>4</slash:comments> </item> <item><title>best wordpress plugins for bloggers</title><link>http://wordpressapi.com/2010/06/19/wordpress-plugins-bloggers/</link> <comments>http://wordpressapi.com/2010/06/19/wordpress-plugins-bloggers/#comments</comments> <pubDate>Sat, 19 Jun 2010 08:29:22 +0000</pubDate> <dc:creator>Mahesh</dc:creator> <category><![CDATA[Wordpress Plugins]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[best wordpress plugins]]></category> <category><![CDATA[free wordpress plugins]]></category> <category><![CDATA[wordpress plugins]]></category><guid
isPermaLink="false">http://wordpressapi.com/?p=3355</guid> <description><![CDATA[Much of a blogger&#8217;s success comes from the time he or she spends creating great content, networking, testing new opportunities, and promoting his or her blog. Unfortunately, publishing a blog also requires time. Fortunately, the 10 WordPress plugins listed below can help automate (or shorten the time spent on) many blog-related tasks, so you can.....]]></description> <content:encoded><![CDATA[<p>Much of a blogger&#8217;s success comes from the time he or she spends  creating great content, networking, testing new opportunities, and  promoting his or her blog.  Unfortunately, publishing a blog also  requires time.  Fortunately, the 10 WordPress plugins listed below can  help automate (or shorten the time spent on) many blog-related tasks, so  you can spend more time writing, networking and promoting, and less  time on busy work.</p><p><a
href="http://wordpressapi.com/files/wordpress-plugins2.jpg"><img
class="alignnone size-full wp-image-3356" title="wordpress-plugins" src="http://wordpressapi.com/files/wordpress-plugins2.jpg" alt="" width="400" height="183" /></a></p><h2><a
href="http://wordpress.org/extend/plugins/stats/" target="_blank">WordPress.com Stats</a></h2><p>All bloggers should track  the activity on their blogs using a <a
href="http://weblogs.about.com/od/addonsandplugins/tp/BlogStatTrackers.htm">web  analytics tool</a>, but taking the time to log into that tool and  navigate through the provided reports takes time. Often bloggers just  want to take a quick peak at their top level stats. That&#8217;s where the  WordPress.com Stats plugin comes in handy. Instead of logging into a  separate application, you can view some of your <a
href="http://weblogs.about.com/od/addonsandplugins/p/BlogTrafficStat.htm">key  blog analytics</a> right from your WordPress dashboard.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p><span
style="color: #808000"><br
/> </span></p><h2><a
href="http://lesterchan.net/portfolio/programming/php/" target="_blank">WP-Polls</a></h2><p>People love to participate  in polls. Sure there are many options available to bloggers to add polls  to their blogs such as <a
href="http://weblogs.about.com/od/bloggingtools/fr/PollDaddyReview.htm">PollDaddy</a>,  but the WP-Polls plugin allows you to create custom polls without  leaving your WordPress account!</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><h2><a
href="http://blogwaffe.com/2006/10/04/421/" target="_blank">No Self Pings</a></h2><p>The No Self Pings plugin is a  great time saver for bloggers who intralink to their own posts  frequently. If your blog is set up to accept <a
href="http://weblogs.about.com/od/bloggingglossary/g/PingDefinition.htm">pings</a> and <a
href="http://weblogs.about.com/od/bloggingglossary/g/TrackbackDef.htm">trackbacks</a>,  then each time you link to one of your own posts in a new post, a  trackback link is sent to your blog and published in the comments  section of the old post that you linked to. Pings and trackbacks can  slow down your blog, clutter your comments section, and be a nuisance if  they&#8217;re excessive. Also, if your blog is set up to moderate all  comments and trackbacks, this plugin will save you a considerable amount  of time.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><h2><a
href="http://akismet.com/" target="_blank">Akismet</a></h2><p>Make  sure that Akismet is activated on your blog and configured to meet your  preferences. Unfortunately, blogs get a lot of comments that are spam.  Without Akismet (or another comment spam blocking plugin of some kind),  your blog is likely to be inundated with spam comments over time. Blog  readers don&#8217;t like to see spam comments. In fact, too many spam comments  published on your blog can directly result in decreased blog traffic,  so make sure you&#8217;re using a comment spam blocking plugin like Akismet.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><h2><a
href="http://sw-guide.de/wordpress/plugins/math-comment-spam-protection/" target="_blank">Math Comment Spam</a></h2><p>Unfortunately,  comment spam blocking plugins such as Akismet aren&#8217;t always enough to  eliminate all spam comments from getting through to publish on your blog  (or sit in your comment moderation queue). When you install the Math  Comment Spam plugin on your blog, commenters will be asked to enter the  answer to a simple math problem such as 2+3 before they submit their  comment to ensure the comment is being submitted by a human being and  not a spam bot. Users report a significant decrease in the amount of  spam comments that get through Akismet (or their comment spam blocking  plugin) once Math Comment Spam is installed.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><h2><a
href="http://ocaoimh.ie/theme-tester/" target="_blank">Theme Tester</a></h2><p>If you want to change your blog&#8217;s <a
href="http://weblogs.about.com/od/bloggingglossary/g/ThemeDefinition.htm">theme</a> but don&#8217;t want visitors to see your changes until they&#8217;re final, then  Theme Tester is the WordPress plugin for you! When Theme Tester is  intalled, your visitors see your existing blog design while anyone set  up with administrator status in your WordPress account sees the new  WordPress theme.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><h2><a
href="http://www.ilfilosofo.com/blog/wp-db-backup/" target="_blank">WP-Database Backup</a></h2><p>The WP-Database Backup plugin  is a must-have for any WordPress.org user. Once installed, you can set  up the plugin to automatically backup your WordPress database files and  save them to your hard drive or send them to you via email. If your blog  is important to you, do yourself a favor and install this plugin, and  set it up to backup your WordPress database periodically. Keep in mind,  the plugin only backs up your database files. You should also manually  backup your wp-content folder from your blog hosting account.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><h2><a
href="http://wordpress.org/extend/plugins/easytube/" target="_blank">Easytube</a></h2><p>If you&#8217;ve ever struggled trying to get a  YouTube or Google Video to publish correctly on your blog, then the  Easytube plugin is a perfect choice for you. It makes embedding YouTube  and Google Videos into your blog posts a snap and even includes a  preview image of YouTube videos in your <a
href="http://weblogs.about.com/od/bloggingglossary/g/RSSDefinition.htm">RSS</a> feed with a link to the video.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><h2><a
href="http://ajaydsouza.com/wordpress/plugins/autoclose/" target="_blank">Auto Close Comments, Pingbacks and  Trackbacks</a></h2><p>Old blog posts are bait for automated comment spam  bots. In order to reduce spam on old posts, you can use the Auto Close  Comments, Pingbacks and Trackbacks plugin. Simply install it, set the  timeframe when you want comments to be closed on posts, and you&#8217;re done.</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><h2><a
href="http://wordpress.org/extend/plugins/google-maps-advanced/" target="_blank">Google Maps Plugin</a></h2><p>If you like to  include maps from Google in your blog posts, then the Google Maps Plugin  will make the process of creating, inserting and customizing your maps  faster than ever!</p><p><span
style="color: #808000">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span></p><p><span
style="color: #808000"><span
style="color: #000000">Thank You!</span><br
/> </span></p> ]]></content:encoded> <wfw:commentRss>http://wordpressapi.com/2010/06/19/wordpress-plugins-bloggers/feed/</wfw:commentRss> <slash:comments>2</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 (user agent is rejected)
Database Caching 122/220 queries in 3.342 seconds using disk

Served from: wordpressapi.com @ 2010-09-09 21:28:25 -->