WPCF7_TagGeneratorGenerator::print()publicCF7 1.0

Calls one of the template methods.

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

Хуков нет.

Возвращает

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

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

$WPCF7_TagGeneratorGenerator = new WPCF7_TagGeneratorGenerator();
$WPCF7_TagGeneratorGenerator->print( $part, $options );
$part (обязательный)
-
$options **
-
По умолчанию: ''

Код WPCF7_TagGeneratorGenerator::print() CF7 6.0.1

public function print( $part, $options = '' ) {
	if ( is_callable( array( $this, $part ) ) ) {
		call_user_func( array( $this, $part ), $options );
	}
}