WPSEO_Suggested_Plugins::get_yoast_seo_suggested_plugins_notification
Build Yoast SEO suggested plugins notification.
Метод класса: WPSEO_Suggested_Plugins{}
Хуков нет.
Возвращает
Yoast_Notification. The notification containing the suggested plugin.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->get_yoast_seo_suggested_plugins_notification( $notification_id, $plugin );
- $notification_id(строка) (обязательный)
- The id of the notification to be created.
- $plugin(обязательный)
- .
Код WPSEO_Suggested_Plugins::get_yoast_seo_suggested_plugins_notification() WPSEO Suggested Plugins::get yoast seo suggested plugins notification Yoast 27.6
protected function get_yoast_seo_suggested_plugins_notification( $notification_id, $plugin ) {
$message = $this->create_install_suggested_plugin_message( $plugin );
return new Yoast_Notification(
$message,
[
'id' => $notification_id,
'type' => Yoast_Notification::WARNING,
'capabilities' => [ 'install_plugins' ],
],
);
}