diff --git a/wp-includes/functions.php b/wp-includes/functions.php index b9b9c8d49f..2b75c70ab2 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -183,7 +183,7 @@ function get_option($setting) { // Allow plugins to short-circuit options. $pre = apply_filters( 'pre_option_' . $setting, false ); - if ( $pre ) + if ( false !== $pre ) return $pre; // prevent non-existent options from triggering multiple queries