Magento News

 

Get posts for a specific category in wordpress

Here is a way to retrieve a number of posts in a specific category in wordpress.

 global $post;
 $myposts = get_posts('numberposts=5&offset=1&category=1');
 foreach($myposts as $post) {
   setup_postdata($post);
  echo the_title();
}

Get posts for a specific category in wordpress

Possibly Related Posts:


 

Leave a Reply