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 comment