$args = array(
'posts_per_page' => 5,
'cat' => 77 // 77 - id category
);
$query = new WP_Query( $args );
// loop
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
echo '<li>';
the_post_thumbnail();
echo '<a href="'.get_permalink().'">' . get_the_title() . '</a></li>';
}
} else {
// posts not fount
echo 'posts not fount';
}
wp_reset_postdata();
Replace the category id (77) with the id of the category you need. You need to add this code to the template. In the place where you want to display the records (for example: index.php).
Related Posts:
- Get posts from sites in Multisite?
- How To Modify The Loop in archives.php To Have 11 Posts Per Page and CSS Styling
- Using categories & “stickyness” together
- Does the ‘cat’ argument in query_posts fetch posts from subcategories as well as the given ID?
- List posts by category exclude current post
- Optimal way to redirect home page to category archive?
- How to Set an Individual Homepage for Each User?
- Display only the latest post from multiple categories
- Select category in custom query
- Display one latest post from multiple categories
- Return category slug / title from category ID
- display woocommerce all category title on home page
- Exclude category from loop not working
- “NOT ONLY IN” taxonomy query operator?
- Post count for category and tag
- Checking for two categories in query_posts
- How to query post like normal search would do. within search.php page
- Query Posts Exclude Entire Category
- how to query posts and auto assign category if post title has keyword
- How do I call posts with a certain tag?
- Modify WordPress SQL Query to pull from within a category
- query order by category
- Get link which associated with a specific category and tag
- Order by category titles
- Have parent category contain only one post?
- List posts in alphabetical order
- Randomly load categories with latest post
- Set colors depending on category
- How do I query_posts in cat=1 AND not in cat=2
- List all posts in a category with query_post() function
- query_post order desc
- Exclude a category from a query that includes its parent category
- Show the latest post from child category?
- Pagination on category.php and tag.php not working
- Problem with different query loops (and “main loop”) on category template page!
- query_posts not reading correct categories
- Pagination for query_posts();
- function query_posts disabling current_page_menu class
- query_posts by category_name and custom taxonomy
- Shows only one Category in home page
- wordpress taxonomy query posts
- PHP dynamical conditional post display
- Posts of specific category on page and excluded from index.htm
- new WP_Query issues
- how can i hide category?
- Homepage custom recent news
- Displaying links to all posts of the same category on the post page
- Post not found when filtered by category ID
- Exclude categories from postquery
- Sort posts alphabetically by category/custom taxonomy, insert divider between different types
- Show posts from category specified using a custom field
- query_post problem
- Add class to current post in query_post
- pagination 404 error, same slug home and categories
- Different post slug based on archive
- How can I exclude a particular category from my WordPress Page 1 and Page 2?
- Pagination does not work with query_posts()
- Assign a class to first element in category in loop
- How to display products with multiple conditions, product_id and category_id
- Query post only from categories that have subcategories
- Display last postings of 5 categories on homepage
- Displaying posts by year
- Paginate WordPress Category Pages
- How do I get a single page navigation depending on the previous page?
- How to have a category not show up in query post with page panigation?
- Duplicate homepage to show posts from 1 category
- Query pages by category
- Showing one post from each category, paged?
- Country Ways Content Show
- How to add featured image for category (without a plugin)?
- Query only Posts from Both of Two Category?
- Deleting All tags except categories Wp database
- Action hooks returning old category instead of new category
- What is the advantage of using header-catname.php over is_category(‘catname’);?
- Custom WP_Query for current category (in category.php)?
- Why is get_the_category() saying that I have two categories?
- Custom sidebar on category pages
- How do I get the category slug from wp_dropdown_categories
- Change the category of all posts in it
- How to hide some categories in category list under post in wordpress?
- exclude categories from search results
- How to categorize posts under Category 1 and Category 2 which are separate lists of categories, and display them as separate lists in widgets
- Category archives with monthly pagination
- Older entries link within category page
- How to do some action weekly?
- How to hide child categories from displaying
- How to allow Category Title to use tags?
- Is it possible to create an alias/custom taxonomy for a category name?
- Multiple category columns and post counting list in wordpress Homepage
- add current-cat class to single post page
- Problem with pagination block in Gutenberg
- Product category display in tabs
- Sending all categories associated with a post to Google Ad Manager for use with .setTargeting
- Why is URL Slug Saving Differently From How It’s Been Defined?
- Get permalink to latest post in category
- How to noindex, follow a specific category wordpress?
- Group Posts by First Letter of Title categories
- Listing category
- Anyway to hide a Category in the Categories section when adding/editing a post in WP Admin?
- Weird html output of single_cat_title – is not inside of the html element?