Show last 5 posts from specific category
Here is the correct way to run this. I am using ‘category_name’ in theme code lately as it is much easier to read and remember. It uses the category slug. Here I am retrieving the last 5 posts in “uncategorized”. function Last5posts() { $args = array( ‘posts_per_page’ => 5, ‘category_name’ => ‘uncategorized’); $last_5_posts_query = new … Read more