如果您想获取所有博客帖子的日期,那么您需要执行自己的查询并循环该查询。
以下是查询:
<?
$posts = new WP_Query(array(
\'post_type\' => \'post\',
\'posts_per_page\' => -1
));
?>
现在,您需要像这样循环这些帖子:
<?
if( $posts->have_posts() ) : while( $posts->have_posts() ) : $posts->the_post();
echo get_the_date();
endwhile; endif;
?>
如果你有50篇帖子,那么你会看到50个日期。
如果您需要使查询更加具体以过滤掉某些帖子,那么您可以通过许多代码示例找到所有可能的参数here.