wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



update_blog_option › WordPress Function

Seit
Veraltetn/v
update_blog_option ( $id, $option, $value, $deprecated = null )
Parameter: (4)
  • (int) $id The blog ID.
    Erforderlich: Ja
  • (string) $option The option key.
    Erforderlich: Ja
  • (mixed) $value The option value.
    Erforderlich: Ja
  • (mixed) $deprecated Not used.
    Erforderlich: Nein
    Standard: null
Gibt zurück:
  • (bool) True if the value was updated, false otherwise.
Definiert in:
Codex:
Changelog:
  • MU

Updates an option for a particular blog.



Quellcode

function update_blog_option( $id, $option, $value, $deprecated = null ) {
	$id = (int) $id;

	if ( null !== $deprecated ) {
		_deprecated_argument( __FUNCTION__, '3.1.0' );
	}

	if ( get_current_blog_id() === $id ) {
		return update_option( $option, $value );
	}

	switch_to_blog( $id );
	$return = update_option( $option, $value );
	restore_current_blog();

	return $return;
}