Reputation:
How to get page id not post id?
I'm tried these, but always get post id.
global $wp_query;
print $wp_query->get_queried_object_id();
global $post;
print $post->ID;
$wp_query->get_queried_object_id();
This questions also not resolving this issue.
Upvotes: 1
Views: 686
Reputation: 731
@sevi WordPress stores page as a post, and you can get requested page id by
<?php get_the_ID(); ?>
Upvotes: 0