As the title says I am looking for a way to display authors in a way so I can use pagination for the results and split them over several pages. Much like a normal post query where I can use posts_per_page=5&paged=$paged
views:
37answers:
1
A:
There is this function in WP: wp_list_authors([options])
http://codex.wordpress.org/Template_Tags/wp_list_authors
It functions similar to query_posts(), but not exactly. Check out this other page on the Codex for examples and tutorials:
Jason
2010-07-12 16:45:21
Thanks I know wp_list_authors. It does not do pagging or avatar by deafult, so not really an option. I guess my question is how do I do paging on a query that returns authors and not posts or pages
Thomas
2010-07-18 22:02:19
Ah, I see. I guess you'd need custom queries to get what you want. Give me some time and I can probably write something similar to what you want. (After work).
Jason
2010-07-19 16:23:40