如何显示属于特殊类别的帖子

时间:2013-10-04 作者:user1991

我必须在主页上显示属于特定类别的帖子。由于我对word press还不熟悉,我不知道该怎么做。请帮帮我

1 个回复
SO网友:Maruti Mohanty

在中使用以下代码page.php 文件或主页模板(如果已创建)。使用Child theme 编辑主题文件

if( is_home() || is_front_page() ) {
    $args = array(
        \'posts_per_page\'   => -1, // To show all the posts
        \'cat\' => cat_id // Replace cat_id with the actual category id
    );

    // The Query
    $the_query = new WP_Query( $args );

    // The Loop
    if ( $the_query->have_posts() ) {
        while ( $the_query->have_posts() ) {
            $the_query->the_post();
            echo \'<li>\' . get_the_title() . \'</li>\';
        }
    } else {
    // no posts found
    }
    /* Restore original Post Data */
    wp_reset_postdata();
}
有关更多详细信息,请参阅function Reference

结束

相关推荐

使用Get_Categories选择菜单下拉菜单的自定义小部件

我创建了一个自定义小部件,它应该显示一个包含博客所有类别的选择菜单。我使用get\\u categories来编译列表。这很好,所有类别都显示在下拉菜单中。每次我保存并刷新小部件页面时,自定义小部件就不再存在了。我检查过了function update 那里一切都很好。所以我想这一定是我创建表单的方式。有什么想法吗?提前谢谢。我不想转储所有代码,所以我只粘贴了创建表单的函数。如果你需要更多,请发表评论function form( $instance ) { /* Default