
I finally added Similar posts plugin for my Wordpress.
Thanks to rmarsh.com for this simple and easy to install plugin. Similar posts plugin displays a list of posts which are related or similar to the current post. I added it under every single post, with <?php similar_posts(); ?> code.
With this plugin you will help your visitors, to find similar posts on your sites. So they can read helpful post and they will stay more time on your site. Here is the installing method and downloading link:
You can download this plugin here.
INSTALLATION:
Simple way:
<?php similar_posts(); ?> at the place in your theme files where you want the list of similar posts to appear<?php similar_posts(); ?> under <?php the_content(); ?> (</div>, </div>)Full way:
ALTER TABLE `wp_posts` ADD FULLTEXT `post_similar` ( `post_title` , `post_content` )
Note: You may have chosen a different table prefix, e.g., ‘wp1_’ rather than ‘wp_’. If so change ‘wp_posts’ above to match.
Note: The full-text index is only supported for MyISAM tables. If wp_posts is in another format you will have to restructure it:
ALTER TABLE `wp_posts` TYPE=MYISAM
<?php similar_posts(); ?> at the place in your theme files where you want the list of similar posts to appear. Lorelle on WordPress has a good guide to modifying themes for plugins. If you are using a widget-ready theme the plugin can be placed from the widget admin page.You can find more info on original site, rmarsh.com .





If you would like to make a comment, please fill out the form below.
Recent Comments