File: /home/alfouzantranspor/www/wp-content/themes/star-hotel/template-parts/sections/section-blog.php
<?php
$starhotel_hs_blog = esc_attr(get_theme_mod('hs_blog','1'));
$starhotel_blog_title = esc_attr(get_theme_mod('blog_title'));
$starhotel_blog_subtitle = esc_attr(get_theme_mod('blog_subtitle'));
$starhotel_blog_description = esc_attr(get_theme_mod('blog_description'));
$starhotel_blog_num = esc_attr(get_theme_mod('blog_display_num','3'));
if($starhotel_hs_blog=='1'):
?>
<section id="blog-section" class="blog-area home-blog">
<div class="<?php if(esc_attr(get_theme_mod('star_hotel_blog_section_width','Box Width')) == 'Full Width'){ ?>container-fluid pd-0 <?php } elseif(esc_attr(get_theme_mod('star_hotel_blog_section_width','Box Width')) == 'Box Width'){ ?> container <?php }?>">
<div class="row justify-content-center text-center sec-titlebx">
<div class="section-title">
<h2><?php echo esc_html(get_theme_mod('blog_heading')); ?></h2>
<div class="clearfix"></div>
</div>
</div>
<?php if(!empty($starhotel_blog_title) || !empty($starhotel_blog_subtitle) || !empty($starhotel_blog_description)): ?>
<div class="title">
<?php if(!empty($starhotel_blog_title)): ?>
<h6><?php echo wp_kses_post($starhotel_blog_title); ?></h6>
<?php endif; ?>
<?php if(!empty($starhotel_blog_subtitle)): ?>
<h2><?php echo wp_kses_post($starhotel_blog_subtitle); ?></h2>
<span class="shap"></span>
<?php endif; ?>
<?php if(!empty($starhotel_blog_description)): ?>
<p><?php echo wp_kses_post($starhotel_blog_description); ?></p>
<?php endif; ?>
</div>
<?php endif; ?>
<div class="row m-0">
<?php
$starhotel_blogs_args = array( 'post_type' => 'post', 'posts_per_page' => $starhotel_blog_num,'post__not_in'=>get_option("sticky_posts")) ;
$starhotel_blog_wp_query = new WP_Query($starhotel_blogs_args);
if($starhotel_blog_wp_query)
{
while($starhotel_blog_wp_query->have_posts()):$starhotel_blog_wp_query->the_post(); ?>
<div class="col-lg-4 col-md-4 col-sm-12 blogbx">
<!-- <div class="blogbx"> -->
<?php if (has_post_thumbnail( $post->ID ) ): ?>
<?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' ); ?>
<a href="<?php echo esc_url( get_permalink() ); ?>">
<div class="blog-image" style="background-image: url('<?php echo esc_url($image[0]); ?>')">
</div>
</a>
<?php else:
$img = get_template_directory_uri().'/assets/images/default.png';
?>
<!-- <a href="<//?php echo esc_url( get_permalink() ); ?>">
<div class="blog-image" style="background-image: url('<//?php echo esc_url($img); ?>')">
</div>
</a> -->
<?php endif; ?>
<div class="clearfix"></div>
<div class="blog-content">
<div class="box-admin">
<ul class="comment-timing">
<li class="ath"><a href="<?php echo esc_url( get_permalink() ); ?>"><?php echo get_the_date( 'j' ); ?> <?php echo get_the_date( 'M' ); ?> <?php echo get_the_date( 'Y' ); ?></a> </li>
<!-- <li class="share-button"><i class="fa fa-share-alt"></i></li> -->
</ul>
</div>
<?php
if ( is_single() ) :
the_title('<h6 class="post-title">', '</h6>' );
else:
the_title( sprintf( '<h6 class="post-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h6>' );
endif;
?>
<p><?php echo wp_trim_words(get_the_content(), 35); ?></p>
<div class="blog-btn">
<a href="<?php echo esc_url( get_permalink() ); ?>"><?php esc_html_e('READ MORE','star-hotel'); ?>
<div class="btn-brd"></div>
</a>
<div class="clearfix"></div>
</div>
</div>
<div class="clearfix"></div>
<!-- </div> -->
</div>
<?php endwhile;
}
wp_reset_postdata();
?>
</div>
</div>
</section>
<?php endif; ?>