Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: update_site_option_{$option}

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
940           $result = $wpdb->update( $wpdb->sitemeta, array( 'meta_value' => $serialized_value ), array( 'site_id' => $wpdb->siteid, 'meta_key' => $option ) );
941
942           if ( $result ) {
943                $cache_key = "{$wpdb->siteid}:$option";
944                wp_cache_set( $cache_key, $value, 'site-options' );
945           }
946      }
947
948      if ( $result ) {
949           do_action( "update_site_option_{$option}", $option, $value, $old_value );
950           do_action( "update_site_option", $option, $value, $old_value );
951           return true;
952      }
953      return false;
954 }
955
956 /**
957  * Delete a site transient.
958  *