get the current page id inside wordpress plugin page

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

    You can get ID of the post in current page outside the loop using the technique below:

    global $wp_query;
    $post_id = $wp_query->post->ID;
    
    $post = get_post( $post_id );
    $slug = $post->post_name;
    

提交回复
热议问题