Home
Products
Services
Contact Us
X
How to get current post ID in WordPress
Adding below code to your WordPress template will display the current post ID.
<?php
the_ID
(
)
;
?>
<?php the_ID(); ?>