HEX
Server: LiteSpeed
System: Linux php-prod-1.spaceapp.ru 5.15.0-160-generic #170-Ubuntu SMP Wed Oct 1 10:06:56 UTC 2025 x86_64
User: xnsbb3110 (1041)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: /home/shaping-sar.ru/public_html/wp-content/themes/beauty spa/builder/template/spa_slider.php
<?php
extract( shortcode_atts( array(
'title'     => '',
'description' => '',
'image' => '',
'link' => '#',
'link_txt' => '',
), $atts ) );

$img = wpb_getImageBySize( array(
	'attach_id' => $image,
	'thumb_size' => '1920x1080',
	'class' => 'img-responsive'
) );
if($img == null)
{
	$img['thumbnail'] = '<img src="'.get_template_directory_uri().'/img/slider/slider1.jpg" alt="'.__('Spa slider', IZ_LANG).'" class="img-responsive">';
}
?>
<div class="slide active">
  	<?php echo $img['thumbnail']; ?>
    <div class="slide-caption">
      <div class="container">
        <h1><?php echo esc_attr($title); ?></h1>
        <p><?php echo esc_attr($description); ?></p>
        <a class="btn btn-primary read" href="<?php echo esc_attr($link); ?>"><?php echo esc_attr($link_txt) ?></a>
      </div>
    </div>
</div><!-- end slide2 -->