任何人都可以幫助我在Wordpress的functions.php文件中獲取最新的帖子ID。 我想那一定是這樣的如何在functions.php中獲取最新的帖子ID WordPress的
global $wp_query;
$thePostID = $wp_query->post->ID;
,但無法弄清楚什麼未來。
感謝
任何人都可以幫助我在Wordpress的functions.php文件中獲取最新的帖子ID。 我想那一定是這樣的如何在functions.php中獲取最新的帖子ID WordPress的
global $wp_query;
$thePostID = $wp_query->post->ID;
,但無法弄清楚什麼未來。
感謝
$recent_posts = wp_get_recent_posts(array('numberposts' => '1'));
$thePostID = $recent_posts[0]['ID'];
你想第一個帖子ID
看起來不工作。我得到了一個錯誤:致命錯誤:在public_html/wp-includes/query.php上耗盡了67108864個字節的內存大小(試圖分配130968字節)1577行 – user2482734
增加分配給PHP的內存:http://codex.wordpress.org /Editing_wp-config.php#Increasing_memory_allocated_to_PHP – diggy
我編輯答案只查詢一篇文章 – diggy
? –