wordpress list user roles

You can use a foreach loop, to loop through each of the roles in the array.

<ul>
<?php foreach($roles as $role) { ?>
   <li><?php echo $role;?></li>
<?php }//end foreach ?>
</ul>

Leave a Comment