Support

Account

Home Forums Add-ons Options Page Add Instructions to Options Page Reply To: Add Instructions to Options Page

  • 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?

    Instructions Box Above Title (Should Be Below)