Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to get the page ID before starting the loop in Wordpress. I am using

$page = get_query_var('page_id');

Apparently, it returns nothing.

I just want to check a page for its ID and add a class to <body> tag based on it.

share|improve this question

6 Answers

up vote 27 down vote accepted

If you're using pretty permalinks, get_query_var('page_id') won't work.

Instead, get the queried object ID from the global $wp_query:

// Since 3.1 - recommended!
$page_object = get_queried_object();
$page_id     = get_queried_object_id();


// "Dirty" pre 3.1
global $wp_query;

$page_object = $wp_query->get_queried_object();
$page_id     = $wp_query->get_queried_object_id();
share|improve this answer
Oh yes I was using pretty permalinks :) – Atif Mohammed Ameenuddin Jun 27 '10 at 18:50

You can use is_page($page_id) outside the loop to check.

share|improve this answer
I dont want to check a page, I want to get the ID of current page. – Atif Mohammed Ameenuddin Jun 27 '10 at 13:31
@atif are you sure a page ID is in fact being passed? You don't happen to be on the front page? – Pekka 웃 Jun 27 '10 at 13:57
yes I did check it – Atif Mohammed Ameenuddin Jun 27 '10 at 18:50

Wordpress Get the Page ID outside the loop

This should help:

Retrieve and Get WordPress Post ID Outside the Loop as PHP Variable

share|improve this answer
tried this already, isnt working.. – Atif Mohammed Ameenuddin Jun 27 '10 at 13:31
@atif089: Is there any error you get with this? Or are you using htacces for url rewriting? – Sarfraz Jun 27 '10 at 13:34
no but query isnt passed i guess. print_r($GET) seems to be an empty array – Atif Mohammed Ameenuddin Jun 27 '10 at 18:49

use this instead

global $post; echo $post->ID;

share|improve this answer
This will only work after the loop, not before, since $post is initialized when starting "the loop". – Christian Davén May 28 at 8:32
1  
@ChristianDavén - this is not true. This code works on beginning of the page.php – CroiOS Jun 14 at 10:31

This function get id off a page current.

get_the_ID();
share|improve this answer
1  
um...this only works if you're in the loop: Returns the numeric ID of the current post. **This tag must be within The Loop.** – drzaus Mar 1 at 22:18

This is the correct code.

echo $post->ID;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.