List authors of site with link and gravatar
To answer your problems: Sorting by post count You can collect all the information you need in to an array and sort that array by number of posts , like this: //function to sort array by filed function authors_orderBy($data, $field){ $code = “if (\$a[‘$field’] == \$b[‘$field’]) {return 0;} return (\$a[‘$field’] < \$b[‘$field’]) ? 1 : … Read more