get_settings( string $option ): string

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

Get value based on option.

Description

See also

Parameters

$optionstringrequired

Return

string

Source

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

	return get_option($option);
}

Changelog

VersionDescription
2.1.0Use get_option()
0.71Introduced.

User Contributed Notes

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