WPSEO_Option_Wpseo::get_instance
Get the singleton instance of this class.
Метод класса: WPSEO_Option_Wpseo{}
Хуков нет.
Возвращает
Объект.
Использование
$result = WPSEO_Option_Wpseo::get_instance();
Код WPSEO_Option_Wpseo::get_instance() WPSEO Option Wpseo::get instance Yoast 27.8
public static function get_instance() {
if ( ! ( self::$instance instanceof self ) ) {
self::$instance = new self();
}
return self::$instance;
}