get_settings()

最后更新于:2021-11-27 00:11:36

get_settings( string$option)

Get value based on option.

参数

$option

(string) (Required)

响应

(string)

源文件

文件: gc-includes/deprecated.php

function get_settings($option) {
	_deprecated_function( __FUNCTION__, '2.1.0', 'get_option()' );

	return get_option($option);
}