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
またはペッカが持っているようにget_the_date('F Y');