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

get_settings( string $option )

Get value based on option.


Description Description

See also See also


Top ↑

Parameters Parameters

$option

(string) (Required)


Top ↑

Return Return

(string)


Top ↑

Source Source

File: wp-includes/deprecated.php

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

	return get_option($option);
}

Top ↑

Changelog Changelog

Changelog
Version Description
2.1.0 Use get_option()
0.71 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.