Jump to content

Don't show author if one of


babyglove

Recommended Posts

I'm trying to not show meta for an author based on is not user_nicename. The code below only works if there is just one user - how would I add another user to the code, so their meta is not shown as well? 

<?php if(get_the_author_meta( 'user_nicename')!='user1') : ?><div class="author clearfix">
       <div class="author-gravatar">
           <?php echo get_avatar( $post->post_author, 64 ); ?>       
       </div>
       <div class="author-about">
        <h4>
        <?php if(get_the_author_meta( 'first_name') != ''  &&  get_the_author_meta( 'last_name') != '' ) : ?>
            <?php the_author_meta( 'first_name'); ?> <?php the_author_meta( 'last_name'); ?> 
      <?php else: ?>
          <?php the_author_meta( 'user_nicename'); ?> 
      <?php endif; ?>
      </h4>
           <p class="author-description"><?php the_author_meta( 'description' ); ?></p>
       </div>
   </div><?php endif ?>

 

Link to comment
https://forums.phpfreaks.com/topic/286625-dont-show-author-if-one-of/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.