get_settings()
Deprecated from version 2.1.0. It is no longer supported and can be removed in future releases. Use get_option() instead.
Get value based on option.
No Hooks.
Return
String
.
Usage
get_settings( $option );
- $option(string) (required)
- -
Notes
- See: get_option()
Changelog
Since 0.71 | Introduced. |
Deprecated since 2.1.0 | Use get_option() |
get_settings() get settings code WP 6.7.1
function get_settings($option) { _deprecated_function( __FUNCTION__, '2.1.0', 'get_option()' ); return get_option($option); }