Excluding author box for certain authors on posts
-
Hello all!
I built my own author-box (a biography, avatar, and social media links) to be displayed above every post on the single.php template. However, I only want it to be displayed above authors who work for the site, and not from authors we reblog or are temps. So I want to exclude the author box from showing up on the page for ID #3 or “externalsource”.
Could you guys help me out real quick? Thanks!
Here is my code:
`<div id=”authorbox”>
??? <?php if (function_exists(‘get_avatar’)) { echo get_avatar( get_the_author_email(), ’80’ ); }?>
<div class=”authortext”>
<h4>About <?php the_author_posts_link(); ?></h4>
? ??? ?<p><?php the_author_description(); ?></p>
</div>
</div>’
- The topic ‘Excluding author box for certain authors on posts’ is closed to new replies.