ge, [ 'id' => self::NOTIFICATION_ID, 'type' => Yoast_Notification::WARNING, 'capabilities' => [ 'wpseo_manage_options' ], 'priority' => 20, 'resolve_nonce' => \wp_create_nonce( 'wpseo-resolve-alert-nonce' ), ] ); } /** * Returns the notification as an HTML string. * * @return string The HTML string representation of the notification. */ private function get_message() { $message = \sprintf( /* translators: %1$s expands to "Yoast SEO". */ \esc_html__( 'Looks like you’re new here. %1$s makes it easy to optimize your website for search engines. Want to keep your site healthy and easier to find? Sign up below to receive practical emails to get you started!', 'wordpress-seo' ), 'Yoast SEO' ); $notification_text = '

' . $message . '

'; return $notification_text; } }