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