分类转到不同的博客页面?

时间:2013-09-04 作者:Matt

我已经搜索了这个,但找不到明确的答案。

我想让我的主博客页面显示具有特定类别的帖子,然后让另一个博客页面显示不同的类别。

我该怎么做?

非常感谢。马特

1 个回复
SO网友:Chris Klongpayabal

一种方法是创建一个模板页面,在该页面中,您将具有显示想要显示的类别的逻辑。您的模板页面如下所示:

/*
Template Name: Secondary Blog Page
*/

get_header();

/*Code for your custom category display*/
$customcats = new WP_Query(array(
    \'cat\' => 12,13,15  //Category ID\'s
));
if($customcats->have_posts()):

while($customcats->have_posts()): $customcats->the_post();
    //code to display the posts however you want
endwhile;

endif;
wp_reset_postdata();

get_sidebar();
get_footer();
然后创建一个新页面,并选择此模板来呈现它。

结束

相关推荐

Link categories to last post

我正在使用wp\\u list\\u categories()显示我的所有类别。但我希望子类别链接到该类别的最后一个帖子。例如: <ul> <li><a href=\"link-to-category-1\">CATEGORY 1</a> <ul> <li><a href=\"link-to-last-post-of-category-1-1\">CATE