| Server IP : 69.72.244.102 / Your IP : 216.73.216.164 Web Server : LiteSpeed System : Linux s3434.fra1.stableserver.net 4.18.0-513.24.1.lve.2.el8.x86_64 #1 SMP Fri May 24 12:42:50 UTC 2024 x86_64 User : konzalta ( 1271) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/konzalta/public_html/wp-content/themes/saasland/ |
Upload File : |
<?php
get_header();
do_action( 'saaland_after_header');
?>
<section class="team_details_area sec_pad">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6">
<div class="team_img">
<?php
if( has_post_thumbnail() ){
the_post_thumbnail('full', array( 'class'=>'img-fluid' ));
}
?>
</div>
</div>
<div class="col-lg-6">
<div class="team_details_content">
<h2><?php the_title(); ?></h2>
<?php
$designation = function_exists( 'get_field' ) ? get_field('member_designation') : '';
$s_description = function_exists( 'get_field' ) ? get_field('short_desc') : '';
if( $designation ){
echo '<div class="postition">'. esc_html( $designation ) .'</div>';
}
if( $s_description ){
echo '<p>'. saasland_kses_post( $s_description ) .'</p>';
}
if( have_rows('member_social_profile') ){ ?>
<h5><?php echo esc_html__( 'On Socials', 'saasland' ); ?></h5>
<ul class="social_icon list-unstyled">
<?php
while ( have_rows('member_social_profile') ) : the_row();
if( get_sub_field('social_icon') ){
echo '<li><a href="'. esc_url( get_sub_field('social_url') ) .'"><i class="ti-'.esc_attr( get_sub_field('social_icon') ).'"></i></a></li>';
}
endwhile; ?>
</ul>
<?php
}
?>
</div>
</div>
</div>
</div>
</section>
<?php
// Team Single Content Area
while (have_posts()) : the_post();
the_content();
endwhile;
get_footer();