Display posts from category
-
Hello,
I’m trying to display some king of related posts. I need the last 10 posts from article’s category. I have this code, but this the lat 10 posts posted, not from my current category. Does anyone have any sugestion for me?Thank you.
<div id="leeft"> <?php $categories = get_the_category(); $catquery = new WP_Query( 'cat=$categories&posts_per_page=10' ); while($catquery->have_posts()) : $catquery->the_post(); ?> <ul> <li><span style="font-size:18px;"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></span> <center><?php echo get_the_post_thumbnail($page->ID, 'thumbnail'); ?></center> </li> </ul> </li> </ul> <?php endwhile; ?> </div>
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Display posts from category’ is closed to new replies.