如何在functions.php Wordpress中获取最新的帖子ID

时间:2013-11-22 10:55:46

标签: wordpress function posts

任何人都可以帮我在Wordpress functions.php文件中获取最新的帖子ID。 我认为它必须像

global $wp_query;
$thePostID = $wp_query->post->ID;

但是无法弄清楚下一步是什么。

由于

1 个答案:

答案 0 :(得分:1)

使用wp_get_recent_posts

$recent_posts = wp_get_recent_posts( array( 'numberposts' => '1' ) );
$thePostID = $recent_posts[0]['ID'];