get_settings

函数


get_settings ( $option )
参数
  • (string)
    $option
    Required:
返回值
  • (string)
相关
  • get_option()
定义位置
  • wp-includes/deprecated.php
    , line 847
引入
0.71
弃用
2.1.0

Get value based on option.

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

	return get_option($option);
}