| Server IP : 82.208.35.60 / Your IP : 216.73.217.116 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/d2m/sofident_cz/wp-content/themes/sofident/template-parts/ |
Upload File : |
<section id="homeCarousel">
<!-- Wrapper for Slides -->
<div id="hcarousel">
<?php
while ($query1->have_posts()) {
$query1->the_post();
$sliderFull = get_the_post_thumbnail_url($query1->post->ID, 'full');
$sliderSmall = get_the_post_thumbnail_url($query1->post->ID, 'lazy');
?>
<div class="item <?php if (0 == $count) echo 'active'; ?>">
<!-- Set the first background image using inline CSS below. -->
<div class="fill <?php if (0 == $count) echo 'loaded'; ?>" <?php if (0 == $count) {
echo "style=\"background-image: url('";
echo $sliderFull;
echo "')\"";
} else {
lazyBackgorundImage($sliderFull, $sliderSmall);
} ?>>
<div class="container promo">
<div class="row">
<div class="col-xs-12 col-sm-offset-2 col-sm-8 col-lg-offset-0">
<h1><?php the_title(); ?></h1>
<?php the_content(); ?>
</div>
</div>
</div>
</div>
</div>
<?php
$count++;
}
wp_reset_postdata();
?>
</div>
</section>