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.
Try using this outside the Loop.
@sevi WordPress stores page as a post, and you can get requested page id by
<?php get_the_ID(); ?>