2011-04-11 66 views
0

所以我想創建一個wordpress插件,它存儲了在某個月寫入的所有帖子的日期。因此,如果在本月10日,12日和18日發佈了帖子,我希望將這些日期的'10','12'和'18'存儲在數組$stack[]中。林新來的PHP,所以我不明白爲什麼這不是在陣列中存儲日期:用wordpress存儲數組中的值

// 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

更改,而這個:

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

這似乎存儲陣列內部的文章的內容。我不需要存儲內容,只需在創建該帖子的月份那天。 – Thomas 2011-04-11 08:57:33

+0

因此,忽略內容,並只使用陣列中的關鍵日! – powtac 2011-04-11 10:12:14