How to get the post id in wordpress

  • 0

To get the id of a post, add following code:
$id = get_the_ID();
echo $id;

 

In single page just paste the above code. Otherwise include inside the loop.

To get the id of a post, add following code: $id = get_the_ID(); echo $id;   In single page just paste the above code. Otherwise include inside the loop.

To get the id of a post, add following code: $id = get_the_ID(); echo $id;   In single page just paste the above code. Otherwise include inside the loop.

Leave a Reply

Your email address will not be published. Required fields are marked *