Skip to content

Instantly share code, notes, and snippets.

@fatihtoprak
Created October 24, 2012 20:07
Show Gist options
  • Save fatihtoprak/3948510 to your computer and use it in GitHub Desktop.
Save fatihtoprak/3948510 to your computer and use it in GitHub Desktop.
wp#2 Popüler 5 yazarın yazılarını listelemek
<?php foreach ( get_users('order=DESC&orderby=post_count&number=5') as $user ) : ?>
<?php echo $user->display_name; ?> (<?php echo $user->post_count; ?> Posts)
<?php endforeach; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment