2011-04-11 55 views
0

我需要在wordpress中返回一個發佈日期數組。所以基本上,如果我在wordpress中有10個帖子,我需要創建一個數組,它將返回創建每個十個帖子的日期。我不需要排序列表,也不需要包含任何其他內容。很簡單吧?!在wordpress中返回一系列帖子日期

事情是這樣的:

$myarray = array(); 
query_posts(); 
// The Loop   
while (have_posts()) : the_post(); 
    $my_array = the_time('j'); 
endwhile; 

我已嘗試許多不同的方法來做到這一點,但他們都或多或少地失敗。有任何想法嗎?

回答

1

您正在使用the_time,它不返回任何要直接顯示輸出的內容。

使用get_the_time()

while (have_posts()) : the_post(); 
    $my_array[] = get_the_time('j'); 
endwhile; 
相關問題