Switch language

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




update_blog_option [ WordPress Function ]

update_blog_option ( $id, $key, $value, $deprecated = null )
Parameter:
  • (int) $id The blog id
  • (string) $key The option key
  • (mixed) $value The option value
Gibt zurück:
  • (bool) True on success, false on failrue.
Definiert in:



Update an option for a particular blog.

Source


<?php
function update_blog_option$id$key$value$deprecated null ) {
    
$id = (int) $id;

    if ( 
null !== $deprecated  )
        
_deprecated_argument__FUNCTION__'3.1' );

    
switch_to_blog($id);
    
$return update_option$key$value );
    
restore_current_blog();

    
refresh_blog_details$id );

    if ( 
$return )
        
wp_cache_set$id '-' $key '-blog_option'$value'site-options');
    return 
$return;
}
?>

Beispiele [ wp-snippets.com ]

Top Google Suchergebnisse

Mehr ...

Nutzerduskussionen [ wordpress.org ]

0 Nutzerkommentare

Noch keine. Sei der Erste!

Neu hinzufügen ...



HTML5 Powered with CSS3 / Styling, Performance & Integration, and Semantics