wpcf7_control_init()
Handles a submission in non-Ajax mode.
Хуков нет.
Возвращает
null. Ничего (null).
Использование
wpcf7_control_init();
Код 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();
}
}