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
This commit is contained in:
parent
fab91dd3d0
commit
12becdf50d
|
@ -385,7 +385,7 @@ function is_multi_author() {
|
||||||
wp_cache_set('is_multi_author', $is_multi_author, 'posts');
|
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 );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue