Skip to content

Instantly share code, notes, and snippets.

@MrJSdev
Created September 23, 2021 17:26
Show Gist options
  • Save MrJSdev/907504694405c563b573c1f473f99af0 to your computer and use it in GitHub Desktop.
Save MrJSdev/907504694405c563b573c1f473f99af0 to your computer and use it in GitHub Desktop.
Fetch all WordPress authors list
<?php
wp_list_authors( array(
'show_fullname' => 1,
'optioncount' => 1,
'orderby' => 'post_count',
'order' => 'DESC',
'number' => 3
) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment