WPSEO_Options::get_all()public staticYoast 1.0

Retrieve all the options for the SEO plugin in one go.

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

Хуков нет.

Возвращает

Массив. Array combining the values of all the options.

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

$result = WPSEO_Options::get_all();

Код WPSEO_Options::get_all() Yoast 22.4

public static function get_all() {
	static::$option_values = static::get_options( static::get_option_names() );

	return static::$option_values;
}