Please how can I display a specific category on Front-Page page, I want to display music category on my WordPress front page at least 3post on Front-Page, I don't know how I can do this
Please how can I display a specific category on Front-Page page, I want to display music category on my WordPress front page at least 3post on Front-Page, I don't know how I can do this
Share Improve this question asked Sep 12, 2019 at 6:55 Oluwatemitope AdealaOluwatemitope Adeala 12 bronze badges 3- Display post as an archive page would display it as in Title with a brief summary of each post, or just the links to the 3 posts? – Kumar Commented Sep 12, 2019 at 7:29
- I don't understand – Oluwatemitope Adeala Commented Sep 12, 2019 at 7:32
- Basically you need to add more details to your question, it gives very little information about what is "Front-Page page" Is it same as home page or it's a different file altogether? How you're trying to display posts, as in any specific format? – Kumar Commented Sep 12, 2019 at 9:06
1 Answer
Reset to default 0That's easy, just add following code in your theme's functions.php file:
function 348118_my_home_category( $query ) {
if ( $query->is_home() && $query->is_main_query() ) {
$query->set( 'cat', '1234' );
}
}
add_action( 'pre_get_posts', '348118_my_home_category' );
In the above code change 1234 with the ID of your music category.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745165681a4614612.html
评论列表(0条)