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();
 
	?>