includes(); add_action( 'admin_notices', array( $this, 'setup_wizard_notice' ) ); add_action( 'admin_notices', array( $this, 'how_to_schema_deprecated_notice' ) ); add_action( 'wp_ajax_wp_schema_pro_setup_wizard_notice', array( $this, 'wp_schema_pro_setup_wizard_notice_callback' ) ); } /** * Display a notice about the deprecation of the HowTo schema. */ public function how_to_schema_deprecated_notice() { $screen = get_current_screen(); // Only display the notice on the settings page of the Schema Pro if ( 'settings_page_aiosrs_pro_admin_menu_page' === $screen->id ) { echo '
' . esc_html__( 'Please be advised that the HowTo schema is now deprecated according to the latest Google guidelines ', 'wp-schema-pro' ) . '' . esc_html__( 'Take a look here.', 'wp-schema-pro' ) . '
'; echo '' . esc_html( $brand_notice ) . '' . esc_html__( 'Start Setup Wizard »', 'wp-schema-pro' ) . '
'; } else { echo '' . esc_html__( 'Not sure where to start with Schema Pro? Check out our initial ', 'wp-schema-pro' ) . '' . esc_html__( 'setup wizard first »', 'wp-schema-pro' ) . '
'; } echo '