I use the Hybrid theme which has an authors page. I would like to display the authors of the blog in descending order by ID. Or maybe by latest entry on the blog.
Can anybody help me?
<?php foreach ( get_users_of_blog() as $author ) : ?>
<?php if ( get_the_author_meta( 'user_level', $author->ID ) > 0 || get_the_author_meta( 'user_login', $author->ID ) == 'admin' ) : ?>
<div id="hcard-<?php echo str_replace( ' ', '-', get_the_author_meta( 'user_nicename', $author->ID ) ); ?>" class="author-profile vcard clear">
<a href="<?php echo get_author_posts_url( $author->ID ); ?>" title="<?php the_author_meta( 'display_name', $author->ID ); ?>">
<?php the_author_image($author->ID);'width="130" height="160"';?>
</a>
<h2 class="author-name fn n">
<a href="<?php echo get_author_posts_url( $author->ID ); ?>" title="<?php the_author_meta( 'display_name', $author->ID ); ?>"><?php the_author_meta( 'display_name', $author->ID ); ?></a>
</h2>
<p class="author-bio">
<?php the_author_meta( 'description', $author->ID ); ?>
</p><!-- .author-bio -->
</div><!-- .author-profile .vcard -->
<?php endif; ?>
<?php endforeach; ?>