Add query args argument to get_users_of_blog(). Limit number of users fetched for user lists in sites table and edit blog form. see #15053

git-svn-id: http://svn.automattic.com/wordpress/trunk@15876 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan
2010-10-20 20:43:32 +00:00
parent 669a403b55
commit c7811f19b3
3 changed files with 10 additions and 5 deletions

View File

@@ -563,15 +563,17 @@ function get_users( $args = array() ) {
* @uses $blog_id The Blog id of the blog for those that use more than one blog
*
* @param int $id Blog ID.
* @param array $args Optional query arguments passed to get_users()
* @return array List of users that are part of that Blog ID
*/
function get_users_of_blog( $id = '' ) {
function get_users_of_blog( $id = '', $args = array() ) {
global $blog_id;
if ( empty($id) )
$id = (int) $blog_id;
return get_users( array( 'blog_id' => $id ) );
$args['blog_id'] = $id;
return get_users( $args );
}
/**