Thursday, February 23, 2012

How to get recent posts from the same category in WordPress

<?php
global $post;
$categories = get_the_category();
$category = $categories[0];
$cat_ID = $category->cat_ID;

$myposts = get_posts("numberposts=20&category=$cat_ID");
?>

<?php foreach($myposts as $post) :?> <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> <?php endforeach; ?>

Just change numberposts=20 to whatever number you want to display.

Add “&orderby=rand” after 20 if you want the list to be random.

Similar Articles

  1. WordPress Popular Snippets
  2. Image Rotation Script in PHP
  3. How to Create a Multi-link Javascript Jump Box
  4. Ten Important SEO Tips
  5. Popular WordPress Plugins by Category
  6. Recommended WordPress plugins for any websites

Hosting Encyclopedia