Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Date: Jun 25, 2022
- // Modified /httpdocs/wp-content/themes/DellOro-Group/template-parts/content-team.php
- // added from line 90 - 173:
- <!-- Executive Advisory Section -->
- <?php
- if ( get_field( 'executive_advisory' ) ) :
- $team_member_id = get_field( 'executive_advisory' );
- $user_id = get_field( 'user_profile', $team_member_id );
- $email = get_the_author_meta( 'user_email', $user_id );
- $team_member_name = get_the_title( $team_member_id );
- $social_links = get_field( 'social_links', $team_member_id );
- $position = get_field( 'position', $team_member_id );
- $full_bio = get_post_field( 'post_content', $team_member_id );
- if ( has_post_thumbnail( $team_member_id ) ) {
- $profile_picture = wp_get_attachment_image( get_post_thumbnail_id( $team_member_id ) );
- } elseif ( get_avatar_url( $user_id ) ) {
- $profile_picture = get_avatar( $user_id, 150 );
- } else {
- $profile_picture = '<img src="https://via.placeholder.com/150?text=' . urlencode( $team_member_name ) . '" alt="' . $team_member_name . '"/>';
- }
- ?>
- <section id="featured-exad" class="content-block featured-member has-pale-gold-background-color" style="display:none;">
- <div class="grid-x">
- <div class="cell medium-3 text-center">
- <div class="team-thumb">
- <div class="profile-picture">
- <?php echo $profile_picture; ?>
- <a href="<?php the_permalink( $team_member_id ) ?>">
- <div class="image-overlay">
- <div class="overlay-details">Full Bio</div>
- </div>
- </a>
- </div>
- <ul class="user-social">
- <?php if ( $social_links ) : ?>
- <?php foreach ( $social_links as $type => $link ) : ?>
- <?php
- if ( $type == 'email' ):
- if ( $link ):
- ?>
- <li>
- <a href="mailto:<?php echo $email; ?>" title="Send an e-mail"
- target="_blank"><i class="fa fa-envelope"></i></a>
- </li>
- <?php
- endif;
- elseif ( $type == 'linkedin_url' ):
- if ( $link ):
- ?>
- <li>
- <a href="<?php echo $link; ?>" title="Send an Linkedin" target="_blank"><i
- class="fa fa-linkedin"></i></a>
- </li>
- <?php
- endif;
- elseif ( $type == 'twitter_url' ):
- if ( $link ):
- ?>
- <li>
- <a href="<?php echo $link; ?>" title="Send an Twitter" target="_blank"><i
- class="fa fa-twitter"></i></a>
- </li>
- <?php
- endif;
- endif;
- ?>
- <?php endforeach; ?>
- <?php endif; ?>
- </ul>
- </div>
- </div>
- <div class="cell medium-9">
- <div class="team-desc">
- <h2><?php echo $team_member_name; ?></h2>
- <h3><?php echo esc_html( $position ); ?></h3>
- <p><?php echo wp_trim_words( $full_bio, 33, '...' ); ?></p>
- <p><a class="btn red-berry-btn" href="<?php the_permalink( $team_member_id ) ?>">Read Full Bio</a>
- </p>
- </div>
- </div>
- </div>
- </section>
- <?php endif; ?>
- <!-- END OF: Executive Advisory Section -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement