按日期显示WordPress帖子 时间:2015-09-16 作者:Andrean Saputro 我想在主页上按天/日期显示Wordpress帖子。例如:2003年1月3日,星期一1月2日,星期日1月1日,星期六我应该使用什么Wordpress查询?谢谢对不起,英语不好。 1 个回复 SO网友:dodi hidayatullah 我想你的问题已经在here$args = array(\'posts_per_page\' => -1, \'orderby\' => \'date\' ); $myQuery = new WP_Query($args); $date = \'\'; if ( $myQuery->have_posts() ) : while ( $myQuery->have_posts() ) : $myQuery->the_post(); if ( $date != get_the_date() ) { echo $date; echo \'<hr />\'; $date = get_the_date(); } the_title(); // or whatever you want here. echo \'<br />\'; endwhile; endif; wp_reset_postdata(); 有关查询的详细信息,请单击此处:http://codex.wordpress.org/Class_Reference/WP_Query 文章导航