Is there's a way to show author's avatar and name on all posts except for one category on the single.php?
Is there's a way to show author's avatar and name on all posts except for one category on the single.php?
Figured it out:
<?php $post = $wp_query->post; if ( !in_category('5') ) { ?>
<?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'twentyten_author_bio_avatar_size', 60 ) ); ?> <br><span class="writtenby">Written by:
<?php the_author_posts_link(); ?><?php } ?>
</span>This topic has been closed to new replies.