Help in query for list links

时间:2012-05-22 作者:Johny

如何进行一次查询以显示如下链接列表:

日期2012年5月20日类别链接类别链接

日期2012年5月19日类别链接类别链接

。。。。

1 个回复
最合适的回答,由SO网友:moraleida 整理而成

Try it like this:

$dates = array(); // declare an array to hold dates

echo \'<ul>\';

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

    $thisday = get_the_time(\'m/d/Y\'); // this post\'s date

if (!in_array($thisday,$dates)) { // check if it\'s in the array
    echo \'<h5>Date \'.$thisday.\'</h5>\'; // if not, print header with date
    $dates[] = $thisday; // and store it
}

echo \'<li>\';
the_category();
echo \'</li>\';

endwhile;
endif;

echo \'</ul>\';
结束

相关推荐

使用新的WP-Query()从循环中过滤后期格式;

嗨,我目前正在为我的博客构建一个主题。下面的代码指向最新的帖子(特色帖子)。因为这将有一个不同的风格比所有其他职位。然而我想过滤掉帖子格式:链接使用我在循环中定义的WP查询,因为它给我带来了更多的灵活性。我该怎么做呢? <?php $featured = new WP_Query(); $featured->query(\'showposts=1\'); ?> <?php while ($featured->have_post