get_settings()WP 0.71

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

Changelog

Since 0.71 Introduced.
Deprecated since 2.1.0 Use get_option()

get_settings() code WP 6.5.2

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

	return get_option($option);
}