Pulling Recent Posts in Category inside loop causing issues
-
Hey Gang,
I’m using the following code to pull a list of recent posts in the current category. The problem is that after this little block come the comments and for some reason it’s pulling the comments from the last of the recent posts I’m calling rather than the comments from the current post and I’m not enough of a PHP guy to understand why.Any help would be GREATLY appreciated. THANKS! Here’s the code:
<?php // get other posts from this category only as related posts // $categories = get_the_category($post->ID); if ($categories) { $category_ids = array(); foreach($categories as $individual_category) $category_ids[] = $individual_category->term_id; $args = array ( 'category__in' => $category_ids, 'post__not_in' => array($post->ID), 'showposts'=>6, // Number of related posts that will be shown. 'caller_get_posts'=>1 ); $my_query = new WP_query($args); if( $my_query->have_posts() ) { while ($my_query->have_posts()) { $my_query->the_post(); ?> <div> <?php $image = get_post_meta($post->ID, 'article_image', true); ?> <a href="<?php the_permalink($post->ID); ?>"><img src="<?php echo $image; ?>" alt="<?php the_title(); ?>" style="height: 90px; width: 90px; float: left; margin: 8px 8px 0px 0px; border: 1px black solid; padding: 0px;"></a> </div> <?php } } } ?>
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Pulling Recent Posts in Category inside loop causing issues’ is closed to new replies.