WPSEO_Breadcrumbs::get_instance()public staticYoast 1.0

Retrieves an instance of the class.

Метод класса: WPSEO_Breadcrumbs{}

Хуков нет.

Возвращает

static. The instance.

Использование

$result = WPSEO_Breadcrumbs::get_instance();

Код WPSEO_Breadcrumbs::get_instance() Yoast 25.1

public static function get_instance() {
	if ( self::$instance === null ) {
		self::$instance = new self();
	}

	return self::$instance;
}