2016-12-15 39 views
4

我想動態顯示上次發佈日期和時間在標題在Wordpress中。請幫我使用代碼,我可以從WP數據庫獲取最後發佈的日期和時間,並將其提取到我的Header.php或其他地方(HTML)。謝謝。在Wordpress中獲取最近發佈時間

回答

0

您可以使用wp_get_recent_posts()以獲得最新的崗位:

$recent_posts = wp_get_recent_posts(array('numberposts' => '1')); 
echo $recent_posts[0]['post_date']; 
+0

謝謝你lonut –