id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc 2874,Improve user role listing in WordPress 4.4,johnbillion,netweb,"In WordPress 4.4, if a user has multiple roles then all of these roles will be shown in a comma separated list on the Users admin listing screen. See https://core.trac.wordpress.org/ticket/22959. bbPress assigns multiple roles to users, and also handles this on the Users admin listing screen. The following example code shows how bbPress can prevent the duplicate role name from appearing here, using the new `get_role_list` filter: {{{ add_filter( 'get_role_list', function( $roles, $user ) { $bbp_role = bbp_get_user_role( $user->ID ); if ( $bbp_role ) { unset( $roles[ $bbp_role ] ); } return $roles; }, 10, 2 ); }}}",task (blessed),closed,normal,2.6,General - Administration,,normal,fixed,has-screenshots has-patch,johnbillion@…