You appear to be a bot. Output may be restricted
Description
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.
Usage
$void = WPML_WPSEO_Notification::notify_not_installed();
Parameters
Returns
void
Source
File name: wordpress-seo/src/integrations/third-party/wpml-wpseo-notification.php
Lines:
1 to 7 of 7
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 ); }