WPCF7::get_option()
Retrieves a named entry from the option array of Contact Form 7.
Метод класса: WPCF7{}
Хуков нет.
Возвращает
Разное
. Array value tied to the $name key. If nothing found, the $default_value value will be returned.
Использование
$result = WPCF7::get_option( $name, $default_value );
- $name(строка) (обязательный)
- Array item key.
- $default_value(разное)
- Default false.
По умолчанию: value to return if the entry does not exist
Код WPCF7::get_option() WPCF7::get option CF7 6.0.1
public static function get_option( $name, $default_value = false ) { $option = get_option( 'wpcf7' ); if ( false === $option ) { return $default_value; } if ( isset( $option[$name] ) ) { return $option[$name]; } else { return $default_value; } }