WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
This hook occurs 3 times in this file.
Line | Code |
---|---|
1424 | * @since 3.4.0 |
1425 | * @since 4.4.0 The `$option` parameter was added. |
1426 | * @since 4.7.0 The `$network_id` parameter was added. |
1427 | * |
1428 | * @param mixed $default The value to return if the site option does not exist |
1429 | * in the database. |
1430 | * @param string $option Option name. |
1431 | * @param int $network_id ID of the network. |
1432 | */ |
1433 | return apply_filters( "default_site_option_{$option}", $default, $option, $network_id ); |
1434 | } |
1435 |
|
1436 | if ( ! is_multisite() ) { |
1437 | /** This filter is documented in wp-includes/option.php */ |
1438 | $default = apply_filters( 'default_site_option_' . $option, $default, $option, $network_id ); |
1439 | $value = get_option( $option, $default ); |
1440 | } else { |
1441 | $cache_key = "$network_id:$option"; |
1442 | $value = wp_cache_get( $cache_key, 'site-options' ); |
1443 |
|
1444 | if ( ! isset( $value ) || false === $value ) { |
1445 | $row = $wpdb->get_row( $wpdb->prepare( "SELECT meta_value FROM $wpdb->sitemeta WHERE meta_key = %s AND site_id = %d", $option, $network_id ) ); |
1446 |
|
1447 | // Has to be get_row() instead of get_var() because of funkiness with 0, false, null values. |
Line | Code |
1452 | } else { |
1453 | if ( ! is_array( $notoptions ) ) { |
1454 | $notoptions = array(); |
1455 | } |
1456 |
|
1457 | $notoptions[ $option ] = true; |
1458 | wp_cache_set( $notoptions_key, $notoptions, 'site-options' ); |
1459 |
|
1460 | /** This filter is documented in wp-includes/option.php */ |
1461 | $value = apply_filters( 'default_site_option_' . $option, $default, $option, $network_id ); |
1462 | } |
1463 | } |
1464 | } |
1465 |
|
1466 | if ( ! is_array( $notoptions ) ) { |
1467 | $notoptions = array(); |
1468 | wp_cache_set( $notoptions_key, $notoptions, 'site-options' ); |
1469 | } |
1470 |
|