wpcf7_add_tag_generator_text()CF7 1.0

Хуков нет.

Возвращает

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

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

wpcf7_add_tag_generator_text();

Код wpcf7_add_tag_generator_text() CF7 5.9.3

function wpcf7_add_tag_generator_text() {
	$tag_generator = WPCF7_TagGenerator::get_instance();
	$tag_generator->add( 'text', __( 'text', 'contact-form-7' ),
		'wpcf7_tag_generator_text' );
	$tag_generator->add( 'email', __( 'email', 'contact-form-7' ),
		'wpcf7_tag_generator_text' );
	$tag_generator->add( 'url', __( 'URL', 'contact-form-7' ),
		'wpcf7_tag_generator_text' );
	$tag_generator->add( 'tel', __( 'tel', 'contact-form-7' ),
		'wpcf7_tag_generator_text' );
}