Recent posts from all categories that current post is. How?
-
Hi, I have to use JohnPope’s solution from here
https://www.ads-software.com/support/topic/155342
because I can add excerpts and thumbnails to that list, but the problem is that this code below just show other posts from the first category this post is found in. I need it changed to check all categories that current post is in and display the latest post found in any of these categories. Anybody know how to do that ?<?php
global $post;
$categories = get_the_category();
$category = $categories[0];
$cat_ID = $category->cat_ID;
$myposts = get_posts("numberposts=8&category=$cat_ID");
?>
<?php foreach($myposts as $post) :?>
"><?php the_title(); ?>
<?php the_thumb(); ?><?php the_excerpt(__('Read More'));?> " href="<?php the_permalink(); ?>"><?php endforeach; ?>
- The topic ‘Recent posts from all categories that current post is. How?’ is closed to new replies.