diff --git a/wp-includes/author-template.php b/wp-includes/author-template.php index a2de336ae5..4b21e446e3 100644 --- a/wp-includes/author-template.php +++ b/wp-includes/author-template.php @@ -385,7 +385,7 @@ function is_multi_author() { wp_cache_set('is_multi_author', $is_multi_author, 'posts'); } - return (bool) $is_multi_author; + return apply_filters( 'is_multi_author', (bool) $is_multi_author ); } /**