Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: default_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

This hook occurs 3 times in this file.

Line Code
1120            * The dynamic portion of the hook name, `$option`, refers to the option name.
1121            *
1122            * @since 3.4.0
1123            * @since 4.4.0 The `$option` parameter was added.
1124            *
1125            * @param mixed  $default The value to return if the site option does not exist
1126            *                        in the database.
1127            * @param string $option  Option name.
1128            */
1129           return apply_filters( 'default_site_option_' . $option, $default, $option );
1130      }
1131
1132      if ( ! is_multisite() ) {
1133           /** This filter is documented in wp-includes/option.php */
1134           $default = apply_filters( 'default_site_option_' . $option, $default, $option );
1135           $value = get_option( $option, $default );
1136      } else {
1137           $cache_key = "$network_id:$option";
1138           $value = wp_cache_get( $cache_key, 'site-options' );
1139
1140           if ( ! isset( $value ) || false === $value ) {
1141                $row = $wpdb->get_row( $wpdb->prepare( "SELECT meta_value FROM $wpdb->sitemeta WHERE meta_key = %s AND site_id = %d", $option, $network_id ) );
1142
1143                // Has to be get_row instead of get_var because of funkiness with 0, false, null values
 
Line Code
1147                     wp_cache_set( $cache_key, $value, 'site-options' );
1148                } else {
1149                     if ( ! is_array( $notoptions ) ) {
1150                          $notoptions = array();
1151                     }
1152                     $notoptions[ $option ] = true;
1153                     wp_cache_set( $notoptions_key, $notoptions, 'site-options' );
1154
1155                     /** This filter is documented in wp-includes/option.php */
1156                     $value = apply_filters( 'default_site_option_' . $option, $default, $option );
1157                }
1158           }
1159      }
1160
1161      /**
1162       * Filter the value of an existing network option.
1163       *
1164       * The dynamic portion of the hook name, `$option`, refers to the option name.
1165       *