wpcf7_add_form_tag_stripe()CF7 1.0

Registers the stripe form-tag handler.

Хуков нет.

Возвращает

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

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

wpcf7_add_form_tag_stripe();

Код wpcf7_add_form_tag_stripe() CF7 5.9.8

function wpcf7_add_form_tag_stripe() {
	wpcf7_add_form_tag(
		'stripe',
		'wpcf7_stripe_form_tag_handler',
		array(
			'display-block' => true,
			'singular' => true,
		)
	);
}