I have been talking about lots of wordpress plugin, and at the same time I suggest using minimum wordpress plugin to make your wordpress fast. We have already written a post on how you can add adsense code without any wodpress plugin ![]()
Some of the wordpress plugin which I have covered till now are
Add related post using Yet another related post plugin
Wordpress ALL in one SEO plugin : A complete review
Platinum SEO pack plugin : Alternative to ALL on one SEO plugin
Feed subscription reminder plugin
This is a simple code which will pull up related post. You can put this code either in your single.php file or on the sidebar using Samsarin php widget wordpress plugin
<?php $tags = wp_get_post_tags($post->ID); if ($tags) { $tag_ids = array(); foreach($tags as $individual_tag) $tag_ids[] = $individual_tag->term_id; $args=array( 'tag__in' => $tag_ids, 'post__not_in' => array($post->ID), 'showposts'=>5, // Number of related posts that will be shown. 'caller_get_posts'=>1 ); $my_query = new wp_query($args); if( $my_query->have_posts() ) { echo '<h3>Related Posts</h3><ul>'; while ($my_query->have_posts()) { $my_query->the_post(); ?> <li><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></li> <?php } echo '</ul>'; } } ?>
This code pull of related post using the tag feature.
Try to avoid plugins as much as you can , and use custom wordpress code and hacks to pull up any query.
Related posts:
- Show Related Post In Wordpress With Thumbnails : Wordpress Plugin
- Wordpress Related Posts With Horizontal Thumbnails For Thesis Theme
- Add related post in wordpress with yet another related post plugin
- Show Simple and Decent Featured Posts Slideshow Wordpress Smooth Slider
- Wordpress Landing sites plugin to decrease wordpress blogs bounce rate
- Twitter Live blog wordpress plugin : Show your Tweets on your blog
- Subscribe To Comment Wordpress plugin : Essential WP Plugin
- Wordpress plugin: How many plugins we should use?





{ 1 trackback }
{ 8 comments… read them below or add one }
Hi Harsh,
I added the code to my blog’s Single.php file. But they do not appear just below the current post. How can I manage that? Thanks for the code!
I managed to show them below current post. The place where you place the mentioned code in Single.php is very important.
I’m glad that you fixed it. I was about to mail you regarding your problem. Good that you were able to resolve it of your own .
It™s the first time I commented here and I must say you share us genuine, and quality information for bloggers! Good job.
p.s. You have a very good template for your blog. Where did you find it?
I’m glad that you like my posts. Will love to hear more from you.
Meanwhile I’m using Thesis wordpress theme.
Hi Harsh,
I’m trying this out and the tags is bring nothing back. Does $tags = wp_get_post_tags($post->ID) still work in 2.8?
I’m using it with the thesis_hook_after_post hook?
.-= George Serradinho ´s last blog ..Happy Birthday my Boy “ You are 7 Today =-.
George can you post the whole code you are trying to enter into your custom.css file. I will have a look and will let you know.
This doesn’t work.