| Server IP : 144.76.79.100 / Your IP : 216.73.216.103 [ Web Server : Apache System : Linux ch05.wehostwebserver.com 5.14.0-611.5.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Nov 11 08:09:09 EST 2025 x86_64 User : razzlestore ( 1092) PHP Version : 8.2.29 Disable Function : NONE Domains : 343 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/self/cwd/wp-content/themes/zugan/template-parts/ |
Upload File : |
<?php
/**
* @author RadiusTheme
* @since 1.0
* @version 1.0
*/
$ul_class = $post_classes = '';
$zugan_has_entry_meta = ( ( !has_post_thumbnail() && ZuganTheme::$options['blog_date'] ) || ZuganTheme::$options['blog_author_name'] || ZuganTheme::$options['blog_comment_num'] || ZuganTheme::$options['blog_cats'] ) ? true : false;
$zugan_time_html = sprintf( '%s <span>%s</span>,<span> %s</span>',get_the_time( 'M' ), get_the_time( 'd' ), get_the_time( 'Y' ) );
$zugan_time_html = apply_filters( 'zugan_single_time', $zugan_time_html );
$zugan_time_html_2 = apply_filters( 'zugan_single_time_no_thumb', get_the_time( get_option( 'date_format' ) ) );
$zugan_comments_number = number_format_i18n( get_comments_number() );
$zugan_comments_html = $zugan_comments_number < 2 ? esc_html__( 'Comment' , 'zugan' ) : esc_html__( 'Comments' , 'zugan' );
$zugan_comments_html = '('. $zugan_comments_number . ') ' . $zugan_comments_html;
$thumbnail = false;
$thumb_size = 'zugan-size3';
if ( ZuganTheme::$layout == 'right-sidebar' || ZuganTheme::$layout == 'right-sidebar' ){
$post_classes = array( 'col-lg-6 col-md-6 col-sm-6 col-12 rt-grid-item blog-layout-1' );
$ul_class = 'side_bar';
} else {
$post_classes = array( 'col-lg-4 col-md-4 col-sm-4 col-12 rt-grid-item blog-layout-1' );
$ul_class = '';
}
$id = get_the_ID();
$content = get_the_content();
$content = apply_filters( 'the_content', $content );
$content = wp_trim_words( $content, ZuganTheme::$options['post_content_limit'] );
?>
<div class="rt-grid-sizer"></div>
<div id="post-<?php the_ID(); ?>" <?php post_class( $post_classes ); ?>>
<div class="blog-box">
<?php if ( has_post_thumbnail() || ZuganTheme::$options['display_no_preview_image'] == '1' ) { ?>
<div class="blog-img-holder">
<a href="<?php the_permalink(); ?>" class="img-opacity-hover"><?php if ( has_post_thumbnail() ) { ?>
<?php the_post_thumbnail( 'zugan-size3', ['class' => 'img-responsive'] ); ?>
<?php } else {
if ( ZuganTheme::$options['display_no_preview_image'] == '1' ) {
if ( !empty( ZuganTheme::$options['no_preview_image']['id'] ) ) {
$thumbnail = wp_get_attachment_image( ZuganTheme::$options['no_preview_image']['id'], $thumb_size );
}
elseif ( empty( ZuganTheme::$options['no_preview_image']['id'] ) ) {
$thumbnail = '<img class="wp-post-image" src="'.ZUGAN_IMG_URL.'noimage_450X330.jpg" alt="'. the_title_attribute( array( 'echo'=> false ) ) .'">';
}
echo wp_kses_post( $thumbnail );
}
}
?>
</a>
</div>
<?php } ?>
<div class="blog-bottom-content-holder">
<ul>
<?php if ( ZuganTheme::$options['blog_author_name'] ) { ?>
<li><?php the_author_posts_link(); ?></li>
<?php } if ( ZuganTheme::$options['blog_date'] ) { ?>
<li><?php echo get_the_date();?></li>
<?php } if ( ZuganTheme::$options['blog_cats'] ) { ?>
<li class="blog-cat"><?php echo the_category( ', ' );?></li>
<?php } if ( ZuganTheme::$options['blog_comment_num'] ) { ?>
<li><a href="<?php echo get_comments_link( get_the_ID() ); ?>"><?php echo esc_html( $zugan_comments_html );?></a></li>
<?php } ?>
</ul>
<h3><a href="<?php the_permalink();?>"><?php the_title();?></a></h3>
<div class="blog-text"><?php echo wp_kses_post( $content ); ?></div>
<a class="blog-button" href="<?php the_permalink(); ?>"><span><?php esc_html_e( 'Continue Reading', 'zugan' ); ?></span><?php if ( is_rtl() ) { ?><i class="flaticon-next"></i><?php } else { ?><i class="flaticon-next"></i><?php } ?></a>
</div>
</div>
</div>