使用wordpress在数组中存储值

时间:2011-04-11 08:41:52

标签: php arrays wordpress

所以我正在尝试创建一个wordpress插件,用于存储在某个月内写的帖子的所有日期。因此,如果本月10日,12日和18日发布了帖子,我想将这些日期“10”,“12”和“18”存储在数组$stack[]中。我是php新手,所以我无法弄清楚为什么这不是在数组中存储日期:

// The Query
$themonth = date( 'n', current_time( 'timestamp' ) );
query_posts('cat=4&month=' . $themonth );
// The Loop
$stack = array();
while ( have_posts() ) : the_post(); 
$stack[] = the_time('j');
endwhile;

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

改变你的时间:

while ( have_posts() ) : 
    the_post();
    $stack[the_time('j')] = get_the_content();
endwhile;