wordpress 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 Wordpress Post ID manually?

    If you are working on post and want to know the post ID then you can follow below steps: Login to wordpress dashboard. Now navigate to Posts >> All Posts Now you can hover the mouse to the post and at the bottom left corner you will see the link in which you can get the post ID too. Also you...
  3. 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