List categories for author: list_categories function inside list_authors function
Seemed interesting, so here is my version. Not sure about get_user_by(), should be more robust way to get objects for authors. function my_list_authors() { $authors = wp_list_authors( array( ‘exclude_admin’ => false, ‘html’ => false, ‘echo’ => false ) ); $authors = explode( ‘,’, $authors ); echo ‘<ul>’; foreach ( $authors as $author ) { $author … Read more