Created
October 24, 2012 20:07
-
-
Save fatihtoprak/3948510 to your computer and use it in GitHub Desktop.
wp#2 Popüler 5 yazarın yazılarını listelemek
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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