Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: add_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
827           wp_cache_set( $cache_key, $value, 'site-options' );
828
829           $_value = $value;
830           $value = maybe_serialize( $value );
831           $result = $wpdb->insert( $wpdb->sitemeta, array('site_id' => $wpdb->siteid, 'meta_key' => $option, 'meta_value' => $value ) );
832           $value = $_value;
833      }
834
835      if ( $result ) {
836           do_action( "add_site_option_{$option}", $option, $value );
837           do_action( "add_site_option", $option, $value );
838           return true;
839      }
840      return false;
841 }
842
843 /**
844  * Removes site option by name.
845  *