Wordpress将the_date()存储在一个数组中

时间:2013-10-30 02:02:29

标签: php arrays wordpress foreach

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

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

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

但是当我打印我的阵列时,什么都没有出现......我该如何解决这个问题?

1 个答案:

答案 0 :(得分: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');