Skip to content

Instantly share code, notes, and snippets.

@celsofabri
Created October 8, 2015 20:20
Show Gist options
  • Save celsofabri/0477942a6bf3b4680b3b to your computer and use it in GitHub Desktop.
Save celsofabri/0477942a6bf3b4680b3b to your computer and use it in GitHub Desktop.
Author Loop WordPress / Looping de Autores WordPress
<?php
$args = get_users(array(
'blog_id' => 1,
'orderby' => 'nicename',
'role' => 'editor'
));
foreach ( $args as $user ) {
echo '<span>' . esc_html( $user->description ) . '</span>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment