How to Get the ID of a Post or Page in WordPress

If you have ever needed to get the ID of a post or page in WordPress, just use the get_the_ID() function.

It accepts no arguments and looks like this:

<?php 
   $ID = get_the_ID(); 
?>

You can also try this method:

<?php 
   global $post;
   echo $post->ID;
?>

 

One thought on “How to Get the ID of a Post or Page in WordPress

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s