File: /home/ukqcurpj/public_html/wp-content/themes/masterstudy/partials/loop-grid.php
<?php
$blog_sidebar_position = stm_option( 'blog_sidebar_position', 'none' );
if ( ! empty( $_GET['sidebar_position'] ) && 'right' === $_GET['sidebar_position'] ) {
$blog_sidebar_position = 'right';
} elseif ( ! empty( $_GET['sidebar_position'] ) && 'left' === $_GET['sidebar_position'] ) {
$blog_sidebar_position = 'left';
} elseif ( ! empty( $_GET['sidebar_position'] ) && 'none' === $_GET['sidebar_position'] ) {
$blog_sidebar_position = 'none';
}
$blog_col_layout = 'col-md-4 col-sm-6 col-xs-12';
if ( 'none' !== $blog_sidebar_position ) {
$blog_col_layout = 'col-md-6 col-sm-6 col-xs-12 blog-cols-sidebar';
}
$classes = array();
if ( is_sticky() ) {
$classes[] = 'sticky';
}
$img_size = ( defined( 'STM_POST_TYPE' ) ) ? 'large' : 'full';
$date = get_the_date( get_option( 'date_format', 'Y F j' ) );
$date_html = "<div class='date-m'><i class='fa fa-calendar'></i> {$date}</div>";
?>
<div class="<?php echo esc_attr( $blog_col_layout ); ?> <?php echo wp_kses_post( implode( ' ', apply_filters( 'stm_post_classes', $classes ) ) ); ?>">
<div class="post_list_content_unit">
<?php if ( has_post_thumbnail() ) : ?>
<div>
<div class="post_list_featured_image">
<a href="<?php the_permalink(); ?>" title="<?php esc_attr_e( 'Watch full', 'masterstudy' ); ?>">
<?php the_post_thumbnail( $img_size, array( 'class' => 'img-responsive' ) ); ?>
</a>
</div>
</div>
<?php endif; ?>
<div class="post_list_inner_content_unit post_list_inner_content_unit_left">
<?php if ( get_the_title() ) { ?>
<a href="<?php the_permalink(); ?>" class="post_list_item_title h3"><?php the_title(); ?></a>
<?php } else { ?>
<a href="<?php the_permalink(); ?>"
class="post_list_item_title h3"><?php echo esc_html_e( 'No title', 'masterstudy' ); ?></a>
<?php } ?>
<div class="clearfix">
<div class="post_list_meta_unit">
<?php echo wp_kses_post( apply_filters( 'stm_theme_post_date', $date_html, get_the_ID() ) ); ?>
<?php $comments_num = get_comments_number( get_the_id() ); ?>
<?php if ( $comments_num ) : ?>
<div class="post_list_comment_num">
<i class="fa-icon-stm_icon_comment_o"></i>
<span><?php echo esc_attr( $comments_num ); ?></span>
</div>
<?php endif; ?>
</div>
</div>
<div class="post_list_item_excerpt"><?php the_excerpt(); ?></div>
<div class="short_separator"></div>
<!-- Post cats -->
<?php
$post_list_item_categories = wp_get_post_categories( get_the_id() );
if ( ! empty( $post_list_item_categories ) ) :
?>
<div class="post_list_cats">
<span class="post_list_cats_label"><?php echo esc_html_e( 'Posted in:', 'masterstudy' ); ?></span>
<?php foreach ( $post_list_item_categories as $post_list_single_cat ) : ?>
<?php $post_list_cat = get_category( $post_list_single_cat ); ?>
<a href="<?php echo esc_url( get_term_link( $post_list_cat ) ); ?>"><?php echo esc_html( sanitize_text_field( $post_list_cat->name ) ); ?></a>
<span class="post_list_divider">,</span>
<?php endforeach; ?>
</div>
<?php endif; ?>
<!-- Post tags -->
<?php
$posttags = get_the_tags();
if ( $posttags ) :
?>
<div class="post_list_item_tags">
<span class="post_list_tags_label"><?php echo esc_html_e( 'Tags:', 'masterstudy' ); ?></span>
<?php foreach ( $posttags as $tag_object ) : ?>
<a href="<?php echo esc_url( get_tag_link( $tag_object->term_id ) ); ?>">
<?php echo esc_html( sanitize_text_field( $tag_object->name ) ); ?>
</a><span class="post_list_divider">,</span>
<?php endforeach; ?>
</div>
<?php endif; ?>
</div>
</div>
</div>