Commit 73fbd8a6 authored by Andrew Nacin's avatar Andrew Nacin
Browse files

Add exclude and include to wp_list_authors().

props patricknami.
fixes #9902.

Built from https://develop.svn.wordpress.org/trunk@27274


git-svn-id: https://core.svn.wordpress.org/trunk@27130 1a063a9b-81f0-0310-95a4-ce76da25c4cd
parent 143c60d6
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -316,6 +316,8 @@ function get_author_posts_url($author_id, $author_nicename = '') {
 * or as a string.</li>
 * <li>html (bool) (true): Whether to list the items in html form or plaintext.
 * </li>
 * <li>exclude (array): Array of user IDs to explicitly exclude.</li>
 * <li>include (array): Array of user IDs to explicitly include.</li>
 * </ul>
 *
 * @link http://codex.wordpress.org/Template_Tags/wp_list_authors
@@ -331,7 +333,7 @@ function wp_list_authors($args = '') {
		'optioncount' => false, 'exclude_admin' => true,
		'show_fullname' => false, 'hide_empty' => true,
		'feed' => '', 'feed_image' => '', 'feed_type' => '', 'echo' => true,
		'style' => 'list', 'html' => true
		'style' => 'list', 'html' => true, 'exclude' => '', 'include' => ''
	);

	$args = wp_parse_args( $args, $defaults );
@@ -339,7 +341,7 @@ function wp_list_authors($args = '') {

	$return = '';

	$query_args = wp_array_slice_assoc( $args, array( 'orderby', 'order', 'number' ) );
	$query_args = wp_array_slice_assoc( $args, array( 'orderby', 'order', 'number', 'exclude', 'include' ) );
	$query_args['fields'] = 'ids';
	$authors = get_users( $query_args );