| Server IP : 217.160.0.251 / Your IP : 216.73.216.183 Web Server : Apache System : Linux info 3.0 #1337 SMP Tue Jan 01 00:00:00 CEST 2000 all GNU/Linux User : u94981163 ( 8991765) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /homepages/15/d754908516/htdocs/wp-content/themes/est-project/templates/ |
Upload File : |
<?php
/**
* @var $design
* @var $settings
* @var $testimonials
*/
?>
<?php if( !empty( $instance['title'] ) ) echo $args['before_title'] . esc_html($instance['title']) . $args['after_title'] ?>
<div class="sow-testimonials">
<?php foreach( $testimonials as $testimonial ) : ?>
<?php
$url = $testimonial['url'];
$new_window = $testimonial['new_window'];
$location = $testimonial['location'];
$link_location = ! empty( $url );
$link_name = ! empty( $testimonial['link_name'] ) && ! empty( $url );
?>
<div class="sow-testimonial__wrapper <?php echo $this->testimonial_wrapper_class($design) ?>">
<div class="sow-testimonial__container">
<?php if( strpos($design['layout'], '_above') !== false ) : ?>
<div class="sow-testimonial-text">
<i class="fa fa-quote-left" aria-hidden="true"></i>
<?php echo wp_kses_post( $testimonial['text'] ) ?>
<i class="fa fa-quote-right" aria-hidden="true"></i>
</div>
<?php endif; ?>
<div class="sow-testimonial-user">
<div class="sow-text">
<?php if( $link_name ) : ?>
<a href="<?php echo sow_esc_url( $url ) ?>" <?php if( ! empty( $new_window ) ) { echo 'target="_blank"'; } ?>>
<?php endif; ?>
<strong><?php echo esc_html( $testimonial['name'] ) ?></strong>
<?php if( $link_name ) : ?>
</a>
<?php endif; ?>
<?php if( $link_location ) : ?>
<a href="<?php echo sow_esc_url( $url ) ?>" <?php if( ! empty( $new_window ) ) { echo 'target="_blank"'; } ?>>
<?php endif; ?>
<?php if( ! empty( $location ) ) : ?>
<span><?php echo esc_html( $location ) ?></span>
<?php endif; ?>
<?php if( $link_location ) : ?>
</a>
<?php endif; ?>
</div>
</div>
<?php if( strpos($design['layout'], '_above') === false ) : ?>
<div class="sow-testimonial-text">
<i class="fa fa-quote-left" aria-hidden="true"></i>
<?php echo wp_kses_post( $testimonial['text'] ) ?>
<i class="fa fa-quote-right" aria-hidden="true"></i>
</div>
<?php endif; ?>
</div>
</div>
<?php endforeach; ?>
</div>
<div class="sow-testimonial-arrows">
</div>