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!
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!
Try using this:
$id = get_the_ID();
you can use $post->ID for current id.
Try:
$post = $wp_query->post;
Then pass the function:
$post->ID
global $post;
echo $post->ID;
You can get id through below Code...Its Simple and Fast
<?php $post_id = get_the_ID();
echo $post_id;
?>