get the current page id inside wordpress plugin page

前端 未结 6 882
情深已故
情深已故 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

    I guess that this is the proper solution:

    $id = get_queried_object_id();
    

    which equals to:

    function get_queried_object_id() {
        global $wp_query;
        return $wp_query->get_queried_object_id();
    }
    

提交回复
热议问题