is_multi_author filter-hook . WP 3.2.0
Filters whether the site has more than one author with published posts.
Usage
add_filter( 'is_multi_author', 'filter_function_name_7487' ); function filter_function_name_7487( $is_multi_author ){ // filter... return $is_multi_author; }
- $is_multi_author(true/false)
- Whether $is_multi_author should evaluate as true.
Changelog
Since 3.2.0 | Introduced. |
Where the hook is called
is_multi_author
wp-includes/author-template.php 561
return apply_filters( 'is_multi_author', (bool) $is_multi_author );