2013-11-22 101 views

回答

1

使用wp_get_recent_posts

$recent_posts = wp_get_recent_posts(array('numberposts' => '1')); 
$thePostID = $recent_posts[0]['ID']; 
你想第一個帖子ID
+0

看起來不工作。我得到了一個錯誤:致命錯誤:在public_html/wp-includes/query.php上耗盡了67108864個字節的內存大小(試圖分配130968字節)1577行 – user2482734

+0

增加分配給PHP的內存:http://codex.wordpress.org /Editing_wp-config.php#Increasing_memory_allocated_to_PHP – diggy

+0

我編輯答案只查詢一篇文章 – diggy

相關問題