Sid Gifari File Manager
🏠 Root
/
home
/
ailwtbdh
/
lynchestinegroup.com
/
wp-content
/
themes
/
koncrete
/
template-parts
/
team
/
Editing: content-team-single-1.php
<?php /** * @author RadiusTheme * @since 1.0 * @version 1.0 */ namespace radiustheme\Koncrete; $prefix = Constants::$theme_prefix; $designation = get_post_meta( get_the_ID(), "{$prefix}_team_designation", true ); $socials = get_post_meta( get_the_ID(), "{$prefix}_team_socials", true ); $thumb_size = "{$prefix}-size6"; $thumb = Helper::generate_thumbnail_image( get_post(), $thumb_size ); ?> <section <?php post_class('single-team-wrap'); ?> id="post-<?php the_ID(); ?>" > <div class=""> <div class="row"> <div class="col-lg-3 col-md-5 col-12 single-team-box1"> <img src="<?php echo esc_url($thumb); ?>" alt="<?php the_title_attribute(); ?>" class="img-fluid"> </div> <div class="col-lg-9 col-md-7 col-12"> <div class="single-team-box2"> <h2 class="mb-1"><?php the_title() ?></h2> <div class="item-subtitle title-bar-xl1"><?php echo esc_html($designation); ?></div> <?php the_content(); ?> <ul class="item-social"> <?php foreach (Helper::team_social_infos() as $social_info): ?> <?php if ($link = $socials[$social_info['key']]): ?> <li> <a href="<?php echo esc_url($link); ?>"> <i class="<?php echo esc_attr( $social_info['icon'] ); ?>"></i> </a> </li> <?php endif ?> <?php endforeach ?> </ul> </div> </div> </div> </div> </section>
Save
Cancel