SEO Smart Links WordPress Plugin
SEO Smart Links provides automatic SEO benefits for your site in addition to custom keyword lists, nofollow and much more.
SEO Smart Links can automatically link keywords and phrases in your posts and comments with corresponding posts, pages, categories and tags on your blog.
Further SEO Smart links allows you to set up your own keywords and set of matching URLs. Finally SEO Smart links allows you to set nofollow attribute and open links in new window.

It is a perfect solution to get your blog posts interlinked or add affiliate links to other sites.
Everything happens completely transparent, and you can edit the options from the administration settings panel.
Installation:
- Upload the whole plugin folder to your /wp-content/plugins/ folder.
- Go to the Plugins page and activate the plugin.
- Use the Options page to change your options
- That is all. You can check your posts for new links.
Download: SEO Smart Links
Visitor Maps and Who’s Online WordPress Plugin
Displays Visitor Maps with location pins, city, and country. Includes a Who's Online Sidebar to show how many users are online. Includes a Who's Online admin dashboard to view visitor details.
The visitor details include: what page the visitor is on, IP address, host lookup, online time, city, state, country, geolocation maps and more. No API key needed. Easy and Quick 4 step install.

Features:
- Configure Options from Admin panel.
- Who's Online Admin dashboard shows visitor details of search bots, members, guests, and you.
- Optional Who's Online widget for sidebar, or footer. Shows how many guests and members are viewing your blog.
- Enable display of city, state, and country flag.
- Enable geolocation for automatic location pin Visitor Maps.
- Enable "Who Is" lookup.
- Enable host lookups for IP addresses.
- Visitor details are stored in a database table for about 30 days.
- Valid coding for HTML and XHTML.
- I18n language translation support
Installation:
- Upload the
visitor-mapsfolder to the/wp-content/plugins/directory, or install automatically through thePlugins,Add Newmenu in WordPress. - Activate the plugin through the
Pluginsmenu in WordPress. Look for the Settings link to configure the Options. - To display visitor maps on your blog: add the shortcode
[visitor-maps]in a Page(not a Post). That page will become your Visitor Maps page. Here is how: Log into your blog admin dashboard. ClickPages, clickAdd New, add a title to your page, enter the shortcode[visitor-maps]in the page, clickPublish. - To add the Who's Online sidebar: Click on Appearance, Widgets, then drag the Who's Online widget to the sidebar column on the right.
(If you do not use widgets and want to add this manually, see FAQ) - Updates are automatic. Click on "Upgrade Automatically" if prompted from the admin menu.
Requirements/Restrictions:
- Works with WordPress 2.8+, WPMU, and BuddyPress. (WordPress 3.0+ is highly recommended)
- PHP 4.3.9 or above with GD2 library support.(PHP5 is highly recommended)
- 30 megs of server space(with geolocation enabled)
- PHP register_globals and safe_mode should be set to "Off"
Download:Visitor Maps and Who's Online
WP-Polls WordPress Plugin Review
WP-Polls is extremely customizable via templates and css styles and there are tons of options for you to choose to ensure that WP-Polls runs the way you wanted. It also supports multiple selection of answers.

Adds an AJAX poll system to your WordPress blog. You can easily include a poll into your WordPress's blog post/page.
Installation:
- Open wp-content/plugins Folder
- Put:
Folder: wp-polls
- Activate WP-Polls Plugin
Upgrade:
- Deactivate WP-Polls Plugin
- Deactivate WP-Polls Widget Plugin
- Open wp-content/plugins Folder
- Put/Overwrite:
Folder: wp-polls
- Delete this folder/file if exists:
Folder: polls
File: wp-polls-widget.php - Activate WP-Polls Plugin
- Go to 'WP-Admin -> Polls -> Polls Templates' and restore all the template variables to Default
- Go to 'WP-Admin -> Appearance -> Widgets' and re-add the Poll Widget
Download:WP-Polls
Page Links To WordPress Plugin Review
This plugin allows you to make a WordPress page or post link to a URL of your choosing, instead of its WordPress page or post URL. It also will redirect people who go to the old (or "normal") URL to the new one you've chosen (301 Moved Permanently redirects are standard, but you can choose a 302 Moved Temporarily redirect if you wish).

This functionality is useful for setting up navigational links to non-WordPress sections of your site or to off-site resources.
You can also use it to create a hand-crafted menu that links to pages, posts, categories, or anything within your site.
Installation:
- Upload the
page-links-tofolder to your/wp-content/plugins/directory - Activate the "Page Links To" plugin in your WordPress administration interface
- Create (or edit) a page or a post to have a title of your choosing (leave the content blank)
- Down below, in the advanced section, find the Page Links To widget and add a URL of your choosing
- Optionally check the boxes to enable link opening in a new browser window, or
302 Moved Temporarilyredirects - Save the post or page
- Done! Now that post or page will point to the URL that you chose
Download:Page Links To
Really Simple CAPTCHA WordPress Plugin Review
Really Simple CAPTCHA does not work alone and is intended to work with other plugins. It is originally created for Contact Form 7, however, you can use it with your own plugin.
Note: This product is "really simple" as its name suggests, i.e., it is not strongly secure. If you need perfect security, you should try other solutions.
How does it work?
Really Simple CAPTCHA does not use PHP "Sessions" for storing states, unlike many other PHP CAPTCHA solutions, but stores them as temporary files. This allows you to embed it into WordPress without worrying about conflicts.
When you generate a CAPTCHA, Really Simple CAPTCHA creates two files for it; one is an image file of CAPTCHA, and the other is a PHP file which returns the correct answer to the CAPTCHA.
The two files have the same (random) prefix in their file names, for example, "a7hk3ux8p.png" and "a7hk3ux8p.php." In this case, for example, when the respondent answers "K5GF" as an answer to the "a7hk3ux8p.png" image, then Really Simple CAPTCHA runs "a7hk3ux8p.php" code and tests the answer against the return value it receives. If the return value is "K5GF," the two match, and the answer is confirmed as correct.

How to use with your plugin
Note: Below are instructions for plugin developers.
First, create an instance of ReallySimpleCaptcha class:
$captcha_instance = new ReallySimpleCaptcha();
You can change the instance variables as you wish.
// Change the background color of CAPTCHA image to black
$captcha_instance->bg = array(0, 0, 0);
See really-simple-captcha.php if you are interested in other variables.
Generate a random word for CAPTCHA.
$word = $captcha_instance->generate_random_word();
Generate an image file and a PHP code file in the temporary directory.
$prefix = mt_rand();
$captcha_instance->generate_image($prefix, $word);
Then, show the image and get an answer from respondent.
Check the correctness of the answer.
$correct = $captcha_instance->check($prefix, $the_answer_from_respondent);
If the $correct is true, go ahead. Otherwise, block the respondent -- as it would appear not to be human.
And last, remove the temporary image and PHP files, as they are no longer in use.
$captcha_instance->remove($prefix);
That's all.
If you wish to see a live sample of this, you can try Contact Form 7.
Installation:
In most cases you can install automatically from WordPress.
However, if you install this manually, follow these steps:
- Upload the entire
really-simple-captchafolder to the/wp-content/plugins/directory. - Activate the plugin through the 'Plugins' menu in WordPress.
There is no "control panel" for this plugin.
Download:Really Simple CAPTCHA
JW Player Plugin for WordPress
The JW Player Plugin for WordPress makes it extremely easy to deliver video through your WordPress website. This plugin has been developed by LongTail Video, the creator of the JW Player, and allows for easy customization and embedding of the JW Player in your WordPress posts. It provides support for all of the player's configuration options, including skins, plugins and the LongTail Video AdSolution.
In addition, it supports a powerful tag system that allows for dynamic customization at embed time, and gives you the capability of referencing external video content. Plus, if your users are viewing your site on an iDevice, it will embed the <video> tag instead. Allowing your users to experience your video content from anywhere.

This plugin also expands the built in WordPress Media Library. You can now add media files from a URL (including full support for YouTube videos and RTMP streams). It is also really simple to create custom playlists using the built in Playlist Manager.
Installation:
- Place the plugin folder in your plugin directory.
- Visit the JW Player Upgrade page and download or upload your JW Player.
WPBook WordPress Plugin Review
WPBook enables users to add your (self-hosted, not wordpress.com) wordpress blog as a Facebook application. Facebook users will see your posts in a Facebook look and feel, and can leave comments with their Facebook identity.
Comments are shared - meaning comments made by users on your blog at its regular domain and comments made by users inside Facebook are all shown to users of either "view" of your content.

Facebook users can also - at their option - add a profile tab to their profile, using the "add profile tab" button at the top of the default canvas page.
That profile box shows the N most recent posts from your blog, as links.(N = user configurable).
WPBook also post notifications automatically to your wall, or the wall of pages for which you are an admin, to which you've added the app, and for which you've granted stream publish permission, when you write a new post.
Finally, WPBook can also import comments made on your wall (or the wall of a Fan page) in response to excerpts it has posted, and show those in your WordPress blog as full comments.
WPBook DOES NOT (yet) do any of these: - Post notifications into your users feeds (except for your posts to your wall) when you publish a post - Post notifications back to a users feed when he/she posts a comment.
Installation:
- Copy the entire wpbook directory into your wordpress plugins folder, /wp-content/plugins/You should have a directory structure like this:/wp-content/plugins/wpbook/wpbook.php/wp-content/plugins/wpbook/theme//wp-content/plugins/wpbook/client/
- Set up a New Application at http://www.facebook.com/developers/, obtaining a secret and API key.Set the callback url to your blog url, including a trailing slash.(http://www.yourblogurl.com/) For canvas url, you just need something all lower case, unique, with no spaces, and no trailing slash. Remember it.Set the application type to "website"Set the application to use an iFrame, not fbml, and to "resizable"(Using iFrames lets you use javascript, objects, and other tags not allowed in FBML inside blog posts)
- Login to WordPress Admin and activate the plugin
- Using the WPBook menu, (Dashboard->Settings->WPBook) fill in the appropriate information including Facebook application secret and API keys, as well as your application canvas url.
Download:WPBook
Audio Player WordPress Plugin Review
Audio Player is a highly configurable but simple mp3 player for all your audio needs.

Features include:
- configurable colour scheme to match your blog theme
- volume control
- right-to-left layout switch for Arabic and Hebrew language sites
- many options such as autostart and loop
- ID3 tag support (custom track info also available)
Installation:
- Extract the contents of the archive (zip file)
- Upload the audio-player folder to your '/wp-content/plugins' folder
- Activate the plugin through the Plugins section in your WordPress admin
IMPORTANT NOTE:
This plugin will only work if your theme allows inserting code in the HEAD and FOOTER sections of your blog.
Download:Audio Player