Getting the WordPress Post ID of current post

2019-01-22 12:03发布

问题:

Anyone know how I can get the post ID of the current page?

So, if I'm on a particular post, inside my header.php, I want to be able to get the current post id.

Thanks!

回答1:

Try using this:

$id = get_the_ID();


回答2:

you can use $post->ID for current id.



回答3:

Try:

$post = $wp_query->post;

Then pass the function:

$post->ID


回答4:

global $post;
echo $post->ID;


回答5:

You can get id through below Code...Its Simple and Fast

 <?php $post_id = get_the_ID();
   echo $post_id;
   ?>


标签: php wordpress