Advertisement
TheMightyAnt

WP get post ID

Mar 13th, 2013
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. Get the id inside the loop with a WP function
  2. ---------------------------------------------
  3. the_id();
  4.  
  5. Get the id inside the loop
  6. --------------------------
  7. <?php global $post;
  8. $postid = $post->ID;
  9. ?>
  10.  
  11. Get the id outside of the loop
  12. ------------------------------
  13. <?php global $wp_query;
  14. $postid = $wp_query->post->ID;
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement