63 lines
1.7 KiB
PHP
63 lines
1.7 KiB
PHP
<!-- start blog item -->
|
|
<article <?php post_class('data'); ?> id="post-<?php the_ID() ?>">
|
|
|
|
<!-- start content -->
|
|
<?php if (is_home() || is_search() || is_archive()): ?>
|
|
<div class="post-content">
|
|
<div class="blog-date">
|
|
<span class="span-day"><?php echo get_the_time('d');?></span>
|
|
<span class="span-month"><?php echo get_the_time('M');?></span>
|
|
</div>
|
|
<?php if (function_exists('printLikes')) { ?>
|
|
<div class="kk-likes">
|
|
<?php printLikes(get_the_ID()); ?>
|
|
</div>
|
|
<?php } ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<div class="blog-content">
|
|
|
|
<!-- start slider -->
|
|
<div class="slider-wrapper">
|
|
|
|
<div id="kk_post_slider_<?php the_ID(); ?>" class="royalSlider rsDefault kk-slider-ef">
|
|
<?php
|
|
$attachments = rwmb_meta( 'kk_imgpost', 'type=image_advanced' );
|
|
foreach ($attachments as $attachment) {
|
|
|
|
if (get_option('toppic_theme_blog_sidebar') !== 'full') {
|
|
$image_size = 'medium_large';
|
|
} else {
|
|
$image_size = 'large';
|
|
};
|
|
|
|
echo wp_get_attachment_image( $attachment['ID'], $image_size, '', array( 'class' => 'rsImg', 'title' => $attachment['title'], 'alt' => $attachment['caption'], 'data-lazy-load' => 0 ) );
|
|
|
|
?>
|
|
|
|
<?php } ?>
|
|
</div>
|
|
|
|
</div>
|
|
<!-- end slider -->
|
|
|
|
<?php if (is_home() || is_search() || is_archive()): ?>
|
|
|
|
<h2 class="blog-title">
|
|
<a href="<?php the_permalink() ?>"><?php the_title() ?></a>
|
|
</h2>
|
|
|
|
<!--start meta -->
|
|
<?php get_template_part( 'formats/blog-classic/post-meta' ); ?>
|
|
<!--end meta -->
|
|
<?php endif; ?>
|
|
|
|
<div class="blog-entry">
|
|
<?php the_content(); ?>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</article>
|
|
<!-- end blog item -->
|