Uses
Uses | Description |
---|---|
wp-includes/functions.php: _deprecated_function() | Mark a function as deprecated and inform when it has been used. |
wp-includes/option.php: get_option() | Retrieves an option value based on an option name. |
This function has been deprecated. Use get_option() instead.
Get value based on option.
(string) (Required)
(string)
File: wp-includes/deprecated.php
function get_settings($option) { _deprecated_function( __FUNCTION__, '2.1.0', 'get_option()' ); return get_option($option); }
Version | Description |
---|---|
2.1.0 | Use get_option() |
0.71 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/get_settings