WPCF7_ContactForm::prop()publicCF7 1.0

Returns the value for the given property name.

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

Хуков нет.

Возвращает

Массив|Строку|null. Property value. Null if property does not exist.

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

$WPCF7_ContactForm = new WPCF7_ContactForm();
$WPCF7_ContactForm->prop( $name );
$name(строка) (обязательный)
Property name.

Код WPCF7_ContactForm::prop() CF7 6.0.1

public function prop( $name ) {
	$props = $this->get_properties();
	return isset( $props[$name] ) ? $props[$name] : null;
}