Displaying Recent Posts in the front page of a single category
-
I want to display the last 4 posts of a single category from the module which displaying Recent Posts in the front page.
I think, I shoud add a criteria in components/features/recent-posts/ recent-posts.php
I think, I shoud add a criteria in components/features/recent-posts/ recent-posts.php<?php $recent = new WP_Query( array( 'posts_per_page' => 4, 'no_found_rows' => true, 'ignore_sticky_posts' => true, ) ); ?>
It is the right way to add : ‘category-id’ => 5 in the list of criteria ?
Thank you for your help
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Displaying Recent Posts in the front page of a single category’ is closed to new replies.