Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created December 1, 2011 19:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/1419068 to your computer and use it in GitHub Desktop.
Save billerickson/1419068 to your computer and use it in GitHub Desktop.
Current Screen Info
<?php
add_action( 'admin_notices', 'be_current_screen_info' );
function be_current_screen_info() {
global $current_screen;
echo '<pre>';
print_r( $current_screen );
echo '</pre>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment