WPCF7_TagGenerator::get_instance()public staticCF7 1.0

Returns the singleton instance of this class.

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

Хуков нет.

Возвращает

null. Ничего (null).

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

$result = WPCF7_TagGenerator::get_instance();

Код WPCF7_TagGenerator::get_instance() CF7 6.0.5

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

	return self::$instance;
}