Advertisement
MrPauloeN

How to Get the WordPress Screen ID of a Page

Aug 22nd, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. # How to Get the WordPress Screen ID of a Page
  2. # Author: https://shibashake.com/wordpress-theme/how-to-get-the-wordpress-screen-id-of-a-page
  3. // Add to the admin_init action hook
  4. add_filter('current_screen', 'my_current_screen' );
  5.  
  6. function my_current_screen($screen) {
  7.     if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) return $screen;
  8.     print_r($screen);
  9.     return $screen;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement