get_settings()
Deprecated since 2.1.0. It is no longer supported and may be removed in future releases. Use get_option() instead.
Get value based on option.
No Hooks.
Returns
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.8.3
function get_settings($option) {
_deprecated_function( __FUNCTION__, '2.1.0', 'get_option()' );
return get_option($option);
}