WordPress get page id not post id

How to get page id not post id?

I’m tried these, but always get post id.

Read More
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.

Related posts

2 comments

  1. @sevi WordPress stores page as a post, and you can get requested page id by
    <?php get_the_ID(); ?>

Comments are closed.