diff --git a/wp-includes/general-template.php b/wp-includes/general-template.php index 55a8fc4a5b..ae463c87c5 100644 --- a/wp-includes/general-template.php +++ b/wp-includes/general-template.php @@ -63,8 +63,8 @@ function bloginfo($show='') { $info = get_bloginfo($show); // Don't filter URL's. - if (strpos($show, 'url') === false || - strpos($show, 'directory') === false || + if (strpos($show, 'url') === false && + strpos($show, 'directory') === false && strpos($show, 'home') === false) { $info = apply_filters('bloginfo', $info, $show); $info = convert_chars($info);