From 12becdf50dd8a2c061f1195446d270ac0a1f6be0 Mon Sep 17 00:00:00 2001 From: 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: http://svn.automattic.com/wordpress/trunk@18649 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 a2de336ae..4b21e446e 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 ); } /**