wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



wp_set_options_autoload › WordPress Function

Depuis6.4.0
Dépréciéen/a
wp_set_options_autoload ( $options, $autoload )
Paramètres: (2)
  • (string[]) $options List of option names. Expected to not be SQL-escaped.
    Requis: Oui
  • (string|bool) $autoload Autoload value to control whether to load the options when WordPress starts up. Accepts 'yes'|true to enable or 'no'|false to disable.
    Requis: Oui
Voir:
Retourne:
  • (array) Associative array of all provided $options as keys and boolean values for whether their autoload value was updated.
Défini(e) dans:
Codex:

Sets the autoload value for multiple options in the database.

This is a wrapper for {@see}, which can be used to set different autoload values for each option at once.


Source

function wp_set_options_autoload( array $options, $autoload ) {
	return wp_set_option_autoload_values(
		array_fill_keys( $options, $autoload )
	);
}