I found the “current screen ID” (options page screen ID) by using this code:
function find_current_screen_id() {
global $my_admin_page;
$screen = get_current_screen();
echo $screen->id;
}
add_action( 'admin_notices', 'find_current_screen_id' );
Unfortunately, I cannot place the “instructions box” under the page title “Global” (See image below). Any ideas?
