get( 'Name' ); add_theme_page( $page_menu_title, $page_menu_title, 'edit_theme_options', 'advance-welcome', array( $this, 'advance_welcome_screen' ) ); } /** * Adds an admin notice upon successful activation. */ public function advance_activation_admin_notice() { global $pagenow; if ( is_admin() && ('themes.php' == $pagenow) && isset( $_GET['activated'] ) ) { add_action( 'admin_notices', array( $this, 'advance_welcome_admin_notice' ), 99 ); } } /** * Display an admin notice linking to the welcome screen */ public function advance_welcome_admin_notice() { ?>