Related Posts {Not A Plugin, PHP Code Mod}
-
Hi
I am building a wordpress theme based off Kubrick and all is going well however I want to implement a Related Posts section under a single posts where i put this code
<?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 class="title">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>'; } } ?>
It actually works perfectly except when you look at the comments. It’s hard to find a pattern but; (read slowly lol) pages with comments, show the comments of a page with the most comments, and if a page has zero comments, no comments are displayed. If I remove the code everything is good. I tried this on a clean version of Kubrick and it does the same thing.
Any help?
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Related Posts {Not A Plugin, PHP Code Mod}’ is closed to new replies.