From e9a78f4ad79fd26bf56c19119a1dbb34f2add14b Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Wed, 7 Sep 2011 13:53:53 +0000 Subject: [PATCH] Add a filter to is_multi_author(). props Viper007Bond, fixes #18600. git-svn-id: https://develop.svn.wordpress.org/trunk@18649 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/author-template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ); } /**