diff --git a/src/wp-includes/author-template.php b/src/wp-includes/author-template.php
index e129e6f701..f7a71ef9a6 100644
a
|
b
|
function wp_list_authors( $args = '' ) { |
434 | 434 | |
435 | 435 | $args = wp_parse_args( $args, $defaults ); |
436 | 436 | |
| 437 | /** |
| 438 | * Filters the WP authors list. |
| 439 | * |
| 440 | * @since 5.9 |
| 441 | * |
| 442 | * @param array $args Allows to modify default arguments. |
| 443 | */ |
| 444 | $args = apply_filters( 'wp_list_authors', $args ); |
| 445 | |
437 | 446 | $return = ''; |
438 | 447 | |
439 | 448 | $query_args = wp_array_slice_assoc( $args, array( 'orderby', 'order', 'number', 'exclude', 'include' ) ); |