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.
|
|
|
If you're using pretty permalinks, Instead, get the queried object ID
|
||||
|
|
|
You can use |
|||||||
|
This should help: Retrieve and Get WordPress Post ID Outside the Loop as PHP Variable |
|||||||
|
|
use this instead global $post; echo $post->ID; |
|||||||
|
|
This function get id off a page current.
|
|||||
|