wpcf7_control_init()CF7 1.0

Handles a submission in non-Ajax mode.

Хуков нет.

Возвращает

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

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

wpcf7_control_init();

Код wpcf7_control_init() CF7 6.1.3

function wpcf7_control_init() {
	if ( WPCF7_Submission::is_restful() ) {
		return;
	}

	if (
		$id = (int) wpcf7_superglobal_post( '_wpcf7' ) and
		$contact_form = wpcf7_contact_form( $id )
	) {
		$contact_form->submit();
	}
}