The get_the_ID() WordPress function Updated on August 16, 2021 by Jeff Matson 0 Minutes, 42 Seconds to Read If you need to obtain the post ID from your posts, you can easily use the get_the_ID() WordPress function. In this article, we will introduce you to the get_the_ID() function. This function can only be used inside the WordPress loop. Basic usage <?php get_the_ID(); ?> This function does not have any parameters that can be called within it. It simply returns the post ID exactly as it is. Example <?php $postid = get_the_ID(); echo $postid; ?> In this example, we use the get_the_ID() function to get the post ID, and assign it to the $postid variable. Then, we display the contents of the $postid variable using the PHP echo command. References For more information on the get_the_ID() function, take a look at the get_the_ID() WordPress Codex page. Share this Article Related Articles How to Create an Admin Account in WordPress via MySQL Create a Footer for WordPress How to Create a Gallery in WordPress without a Plugin How to Disable the WP-Cron (wp-cron.php) in WordPress How to Change Your Site URL in Your WordPress Admin Dashboard W3 Total Cache – Guide to WordPress Caching WordPress – Changing the Site URL and Home Settings How to Globally Change the Font in WordPress How to Install WordPress using Softaculous Cleaning Up Old Post Metadata in WordPress