add files
This commit is contained in:
43
content-more-events.php
Normal file
43
content-more-events.php
Normal file
@@ -0,0 +1,43 @@
|
||||
<?php if (!wp_is_mobile()): ?>
|
||||
<div class="row clearfix d-block">
|
||||
<?php
|
||||
$items = eventCalendar::more_events();
|
||||
foreach ($items as $item):
|
||||
$post = get_post($item->ID);
|
||||
$cat = get_post_primary_category($item->ID);
|
||||
$cat = $cat['primary_category'];
|
||||
?>
|
||||
<div class="col-12 col-md-6 col-xl-4 float-left">
|
||||
<div class="article cell">
|
||||
<a class="article__frame" href="<?php echo esc_url( get_permalink() ); ?>">
|
||||
<?php if (has_post_thumbnail()): ?>
|
||||
<img loading="lazy" class="d-block lazyload" <?php if(wp_is_mobile()): ?>src="<?= get_template_directory_uri() ?>/assets/img/Profile_lazyload_m.webp"<?php else: ?>src="<?= get_template_directory_uri() ?>/assets/img/Profile_lazyload.jpg"<?php endif; ?> data-src="<?php echo get_the_post_thumbnail_url($post,'thumbnail'); ?>" alt="<?php the_title(); ?>" title="<?php the_title(); ?>" />
|
||||
<?php elseif($cat->term_id == 3396): ?>
|
||||
<?php foreach (get_coauthors() as $author ): ?>
|
||||
<img loading="lazy" class="d-block lazyload" <?php if(wp_is_mobile()): ?>src="<?= get_template_directory_uri() ?>/assets/img/Profile_lazyload_m.webp"<?php else: ?>src="<?= get_template_directory_uri() ?>/assets/img/Profile_lazyload.jpg"<?php endif; ?> data-src="<?php echo coauthors_get_avatar_url($author,500, 500, '' ); ?>" alt="<?php echo $author->name; ?>" />
|
||||
<?php endforeach; ?>
|
||||
<?php endif; ?>
|
||||
</a>
|
||||
<?php if ($cat->category_parent != 1): ?>
|
||||
<span class="sticker-group">
|
||||
<?php if(get_post_type($item->ID) == 'anew'): ?><a class="sticker sticker--white" href="/news">СОБЫТИЯ</a><?php endif; ?><a class="sticker sticker--<?php echo get_term_meta($cat->term_id,'color',1); ?>" href="<?php echo get_category_link($cat->term_id); ?>"><?php echo $cat->name; ?></a>
|
||||
</span>
|
||||
<?php endif; ?>
|
||||
<div class="article__body">
|
||||
<time datetime="<?php echo get_the_date("Y-m-d H:s"); ?>" class="article__data">
|
||||
<?php echo date("d.m.Y", strtotime(get_post_meta($post->ID, 'event_date', true))); ?>
|
||||
</time>
|
||||
<a class="article__title" href="<?php echo esc_url( get_permalink() ); ?>">
|
||||
<?php the_title(); ?>
|
||||
</a>
|
||||
<div class="article__detail">
|
||||
<?php if (get_post_type() !== 'anew' && $cat->term_id !== 3401): ?>
|
||||
<?php get_template_part( 'author', 'article' ); ?>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php endforeach; ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
Reference in New Issue
Block a user