wpcf7_add_form_tag_captcha()
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
wpcf7_add_form_tag_captcha();
Код wpcf7_add_form_tag_captcha() wpcf7 add form tag captcha CF7 5.9.8
function wpcf7_add_form_tag_captcha() { // CAPTCHA-Challenge (image) wpcf7_add_form_tag( 'captchac', 'wpcf7_captchac_form_tag_handler', array( 'name-attr' => true, 'zero-controls-container' => true, 'not-for-mail' => true, ) ); // CAPTCHA-Response (input) wpcf7_add_form_tag( 'captchar', 'wpcf7_captchar_form_tag_handler', array( 'name-attr' => true, 'do-not-store' => true, 'not-for-mail' => true, ) ); }