Sid Gifari File Manager
🏠 Root
/
home
/
ailwtbdh
/
lynchestinegroup.com
/
wp-content
/
themes
/
koncrete
/
template-parts
/
team
/
Editing: single-koncrete-team.php
<?php /** * @author RadiusTheme * @since 1.0 * @version 1.0 */ namespace radiustheme\Koncrete; $team_single_style = 1; $container_class = 'container content-padding'; $bg_f2_class = Helper::has_full_width() ? 'bg-f2' : ''; ?> <div class="<?php echo esc_attr( $bg_f2_class ); ?>"> <div class="<?php echo esc_attr( $container_class ); ?>"> <div class="row"> <?php Helper::left_sidebar(); ?> <div class="<?php echo esc_attr( Helper::the_layout_class() ); ?>"> <?php while ( have_posts() ) : the_post(); ?> <?php get_template_part('template-parts/team/content-team-single', $team_single_style); ?> <?php endwhile; ?> <?php if (Helper::has_sidebar()): ?> <?php get_template_part( 'template-parts/team/related-team' ) ?> <?php endif ?> </div> <?php Helper::right_sidebar(); ?> </div> </div> </div> <?php $others_team_bool = isset( RDTheme::$options['has_team_single_others_team'] ) ? RDTheme::$options['has_team_single_others_team'] : true; ?> <?php if ( Helper::has_full_width() && $others_team_bool ): ?> <div class="container"> <?php get_template_part( 'template-parts/team/related-team' ) ?> </div> <?php endif ?> <?php get_footer(); ?>
Save
Cancel