WPCF7_ContactForm::form_elements()publicCF7 1.0

Replaces all form-tags in the form template with corresponding HTML.

Метод класса: WPCF7_ContactForm{}

Хуки из метода

Возвращает

Строку. Replaced form content. wpcf7_form_elements filters applied.

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

$WPCF7_ContactForm = new WPCF7_ContactForm();
$WPCF7_ContactForm->form_elements();

Код WPCF7_ContactForm::form_elements() CF7 5.9.3

public function form_elements() {
	return apply_filters( 'wpcf7_form_elements',
		$this->replace_all_form_tags()
	);
}