How to get the current page id of post or page outside loop?

Use the below code to get the current page id or post id, but outside loop,

global $wp_query;
echo $wp_query->post->ID;

Leave a comment