wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_set_option_autoload › WordPress Function

Since6.4.0
Deprecatedn/a
wp_set_option_autoload ( $option, $autoload )
Parameters: (2)
  • (string) $option Name of the option. Expected to not be SQL-escaped.
    Required: Yes
  • (bool) $autoload Autoload value to control whether to load the option when WordPress starts up. For backward compatibility 'yes' and 'no' are also accepted, though using these values is deprecated.
    Required: Yes
See:
Returns:
  • (bool) True if the autoload value was modified, false otherwise.
Defined at:
Codex:
Change Log:
  • 6.7.0

Sets the autoload value for an option in the database.

This is a wrapper for {@see}, which can be used to set the autoload value for multiple options at once.


Source

function wp_set_option_autoload( $option, $autoload ) {
	$result = wp_set_option_autoload_values( array( $option => $autoload ) );
	if ( isset( $result[ $option ] ) ) {
		return $result[ $option ];
	}
	return false;
}