任何人都可以帮我在Wordpress functions.php文件中获取最新的帖子ID。 我认为它必须像
global $wp_query;
$thePostID = $wp_query->post->ID;
但是无法弄清楚下一步是什么。
由于
答案 0 :(得分:1)
$recent_posts = wp_get_recent_posts( array( 'numberposts' => '1' ) );
$thePostID = $recent_posts[0]['ID'];