0

我使用此代码在 wordpress 中获取 Post 的 id,但它返回空。这里有什么问题?

 $post_id=get_the_ID();
 echo 'Post ID: ' . $post_id. "\n";
4

2 回答 2

0

正如 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/

于 2013-06-13T17:02:25.040 回答
0

好的..所以我这样写:

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。

于 2013-06-14T05:12:38.413 回答