0

我在 foreach 循环中有这段代码:

<?php $current_date[] = the_date('F Y'); ?>

我想做的是将所有日期收集到一个数组中

但是当我 print_r 我的数组时,什么都没有出现......我该如何解决这个问题?

4

1 回答 1

2

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');

于 2013-10-30T02:05:24.910 回答