我如何按类别获得最新帖子?

时间:2011-02-01 12:45:49

标签: php wordpress

目前我遇到了问题。我的代码是

$category_ids = get_all_category_ids();

    foreach($category_ids as $kk=> $cat_id) {

      $cat_name= query_posts( 'posts_per_page=1&orderby=date&order=ASC&cat='.$cat_id);

    if (have_posts ()) :while(have_posts()):the_post

这是我在我的loop.php文件中写的代码我想要的只是按类别显示最新的帖子按日期显示每个类别的1个帖子

1 个答案:

答案 0 :(得分:0)

您可以下载this之类的插件,了解它是如何完成的。 此外,this线程可以帮助您。它包含一个片段,显示每个类别列表中的最后一个帖子。 Wold发布了代码,但它很糟糕,抱歉。