我在foreach循环中有这个代码:
<?php $current_date[] = the_date('F Y'); ?>
我想做的是将所有日期收集到一个数组中
但是当我打印我的阵列时,什么都没有出现......我该如何解决这个问题?
答案 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');