我在 foreach 循环中有这段代码:
<?php $current_date[] = the_date('F Y'); ?>
我想做的是将所有日期收集到一个数组中
但是当我 print_r 我的数组时,什么都没有出现......我该如何解决这个问题?
the_date
是回声,使用
<?php $current_date[] = the_date('F Y', '','', false); ?>
关闭false
回声。
http://codex.wordpress.org/Function_Reference/the_date
或者像Pekka那样get_the_date('F Y');