45 lines
1.4 KiB
PHP
45 lines
1.4 KiB
PHP
<!--[single/post-most-popular-item]-->
|
|
|
|
<?php $post_id = get_the_ID();?>
|
|
|
|
<div class="col-12 col-md-4 d-none" data-id="<?php echo $post_id ?>">
|
|
|
|
<a class="partners__item d-flex d-md-block" href="<?php the_permalink() ?>">
|
|
|
|
<?php //get_template_part("template-parts/micro/post"); ?>
|
|
|
|
<span class="partners__frame">
|
|
|
|
<figure>
|
|
|
|
<?php if ( has_post_thumbnail($post_id) ): ?>
|
|
<img loading="lazy"
|
|
itemprop="image"
|
|
class="d-block"
|
|
src="<?= the_post_thumbnail_url("thumb-264"); ?>"
|
|
alt="<?= htmlspecialchars( get_the_title() ) ?>" />
|
|
<?php else:?>
|
|
<img loading="lazy"
|
|
itemprop="image"
|
|
class="d-block"
|
|
src="<?= wp_get_attachment_image_url(1357368, 'thumb-264');?>"
|
|
alt="<?= htmlspecialchars( get_the_title() ) ?>" />
|
|
<?php endif?>
|
|
|
|
</figure>
|
|
|
|
</span>
|
|
|
|
<strong class="partners__item__title">
|
|
|
|
<?= the_title() ?>
|
|
|
|
</strong>
|
|
|
|
<?php //get_template_part("template-parts/micro/author") ?>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<!--[/single/post-most-popular-item]-->
|