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. Table of Contents Basic usage Example References 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 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 How to Use a Custom Paypal Button in Your Website How to Track WordPress Vulnerabilities With WPScan