diff --git a/wp-includes/option.php b/wp-includes/option.php index 1bc590acd6..7cb4736c28 100644 --- a/wp-includes/option.php +++ b/wp-includes/option.php @@ -132,7 +132,7 @@ function get_option( $option, $default_value = false ) { $pre = apply_filters( "pre_option_{$option}", false, $option, $default_value ); /** - * Filters the value of all existing options before it is retrieved. + * Filters the value of any existing option before it is retrieved. * * Returning a value other than false from the filter will short-circuit retrieval * and return that value instead. @@ -2038,21 +2038,21 @@ function get_network_option( $network_id, $option, $default_value = false ) { $pre = apply_filters( "pre_site_option_{$option}", false, $option, $network_id, $default_value ); /** - * Filters the value of an existing network options before it is retrieved. + * Filters the value of any existing network option before it is retrieved. * * Returning a value other than false from the filter will short-circuit retrieval * and return that value instead. * * @since 6.9.0 * - * @param mixed $pre The value to return instead of the network option value. This differs - * from `$default`, which is used as the fallback value in the event - * the option doesn't exist elsewhere in get_network_option(). - * Default false (to skip past the short-circuit). - * @param string $option Name of the option. - * @param int $network_id ID of the network. - * @param mixed $default_value The fallback value to return if the option does not exist. - * Default false. + * @param mixed $pre_option The value to return instead of the network option value. This differs + * from `$default_value`, which is used as the fallback value in the event + * the option doesn't exist elsewhere in get_network_option(). + * Default false (to skip past the short-circuit). + * @param string $option Name of the option. + * @param int $network_id ID of the network. + * @param mixed $default_value The fallback value to return if the option does not exist. + * Default false. */ $pre = apply_filters( 'pre_site_option', $pre, $option, $network_id, $default_value ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 8105451851..f8ed1d08a4 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.9-alpha-60977'; +$wp_version = '6.9-alpha-60978'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.