get_settings() – Get value based on option.

You appear to be a bot. Output may be restricted

Description

Get value based on option.

Usage

$string = get_settings( $option );

Parameters

$option
( string ) required

Returns

string

Source

File name: wordpress/wp-includes/deprecated.php
Lines:

1 to 5 of 5
function get_settings($option) {
  _deprecated_function( get_settings, '2.1.0', 'get_option()' );

  return get_option($option);
}
 

 View on GitHub View on Trac