get the current page id inside wordpress plugin page

前端 未结 6 886
情深已故
情深已故 2020-12-14 02:25

I need to get the current page id in WordPress plugin page outside the loop. And the code I wrote for getting current page id is in my plugin page.

6条回答
  •  情歌与酒
    2020-12-14 02:51

    Chosen answer is working only if you put it in the Wordpress loop. Outside it will render useless.

    This is working everywhere:

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

提交回复
热议问题