Yoast\WP\SEO\Integrations\Third_Party
WPML_WPSEO_Notification::notify_not_installed() public Yoast 1.0
Notify the user that the Yoast SEO Multilingual plugin is not installed (when the WPML plugin is installed).
Remove the notification again when it is installed.
{} Это метод класса: WPML_WPSEO_Notification{}
Хуков нет.
Возвращает
null.
Использование
$WPML_WPSEO_Notification = new WPML_WPSEO_Notification(); $WPML_WPSEO_Notification->notify_not_installed();
Код WPML_WPSEO_Notification::notify_not_installed() WPML WPSEO Notification::notify not installed Yoast 15.6.2
public function notify_not_installed() {
if ( ! $this->wpml_wpseo_conditional->is_met() ) {
$this->notification_center->add_notification( $this->get_notification() );
return;
}
$this->notification_center->remove_notification_by_id( self::NOTIFICATION_ID );
}