This function has been deprecated. Use get_option() instead.

get_settings( string $option )

Get value based on option.


Description

See also


Parameters

$option

(string) (Required)


Return

(string)


Source

File: wp-includes/deprecated.php

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

	return get_option($option);
}


Changelog

Changelog
Version Description
WP-2.1.0 Use get_option()
WP-0.71 Introduced. This function has been deprecated. Use get_option() instead.