custom post types - How can I display a specific category on Front-Page

Please how can I display a specific category on Front-Page page, I want to display music category on my WordPress front

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
Add a comment  | 

1 Answer 1

Reset to default 0

That'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

相关推荐

  • custom post types - How can I display a specific category on Front-Page

    Please how can I display a specific category on Front-Page page, I want to display music category on my WordPress front

    2小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信