The get_the_ID() WordPress function Jeff MatsonUpdated on August 16, 2021 1 Minute 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 Add Another Website to a WordPress Hosting Account 10 Ways to Secure WordPress How to Fix cURL Error 60 in WordPress: SSL Certificate Problem Intro to Migrating your WordPress Site Data Migrating your WordPress Database Configuring WordPress After a Migration How to Create and Edit Pages and Posts in WordPress What is the Difference Between Pages and Posts in WordPress How to Add Videos to WordPress How to Create and Add a Logo To WordPress