我使用此代码在 wordpress 中获取 Post 的 id,但它返回空。这里有什么问题?
$post_id=get_the_ID();
echo 'Post ID: ' . $post_id. "\n";
我使用此代码在 wordpress 中获取 Post 的 id,但它返回空。这里有什么问题?
$post_id=get_the_ID();
echo 'Post ID: ' . $post_id. "\n";
正如 Wordpress文档所说:这个$post_id
标签必须在循环中。
<?php
if ( have_posts() ) {
while ( have_posts() ) {
// your code here
} // end while
} // end if
?>
更多信息:http ://www.thewordpressblog.com/basics/get-post-id-inside-and-outside-the-loop/
好的..所以我这样写:
query_posts( $args );
// The Loop
while ( have_posts() ) : the_post();
$pid=get_the_ID();
echo "Post ID: ".$pid;
endwhile;
// Reset Query
wp_reset_query();
并获取页面中所有帖子的 ID。但我只需要一个帖子的 ID。