post id

  1. K

    Display Wordpress post ID in functions.php

    You can use the the_ID() function to check the post ID if you will add this function within the loop then it will display the current numeric ID of post. Here is the example of the post: Post Number: <?php the_ID(); ?>
  2. K

    How to find the Post ID in Wordpress Database?

    You can easily find the post ID in database with below steps: Login to cpanel. Click on phpmyadmin under database section. Now click on particular database and you will find the table with name wp-posts. You will see all the data of your wordpress post and here will you will see the post ID...
Top