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 ?>

 

Edited by babyglove
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.