Reputation: 4918
How can I get the page ID from inside the header.php file? $post->ID and get_the_ID() don't work.
Upvotes: 2
Views: 5433
Reputation: 471
The following will work:
$ID = $wp_query->post->ID;
Upvotes: 6