Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: add_site_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
3580           wp_cache_set( $cache_key, $value, 'site-options' );
3581
3582           $_value = $value;
3583           $value = maybe_serialize($value);
3584           $result = $wpdb->insert( $wpdb->sitemeta, array('site_id' => $wpdb->siteid, 'meta_key' => $option, 'meta_value' => $value ) );
3585           $value = $_value;
3586      }
3587
3588      do_action( "add_site_option_{$option}", $option, $value );
3589      do_action( "add_site_option", $option, $value );
3590
3591      return $result;
3592 }
3593
3594 /**
3595  * Removes site option by name.
3596  *
3597  * @see delete_option()
3598  * @package WordPress