Steve
Steve

Reputation: 4918

How to get a page ID from inside a header.php file

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

Answers (1)

bugnumber9
bugnumber9

Reputation: 471

The following will work:

$ID = $wp_query->post->ID;

Upvotes: 6

Related Questions