remove_notification_by_id( 'wpseo-suggested-plugin-yoast-woocommerce-seo' ); } // Don't show the blocking robots notice if using a temp domain. if ( Plugin::is_temp_domain() ) { $notification_center->remove_notification_by_id( 'wpseo-dismiss-blog-public-notice' ); } } /** * Register Yoast SEO REST route. */ public function register_rest_route() { register_rest_route( 'wpaas/v1', 'yoast', [ 'methods' => WP_REST_Server::READABLE, 'callback' => function () { $wpseo = (array) get_option( 'wpseo', [] ); return [ 'active' => defined( 'WPSEO_VERSION' ), 'environment_type' => ! empty( $wpseo['environment_type'] ) ? $wpseo['environment_type'] : null, 'first_activated_on' => ! empty( $wpseo['first_activated_on'] ) ? $wpseo['first_activated_on'] : null, 'show_onboarding_notice' => ! empty( $wpseo['show_onboarding_notice'] ), 'site_type' => ! empty( $wpseo['site_type'] ) ? $wpseo['site_type'] : null, 'version' => ! empty( $wpseo['version'] ) ? $wpseo['version'] : null, ]; }, ] ); } }