35 lines
923 B
PHP
35 lines
923 B
PHP
<!--[single/post-most-popular-item]-->
|
|
|
|
<div class="col-12 col-md-4 d-none" data-id="<?= get_the_ID() ?>">
|
|
|
|
<a class="partners__item d-flex d-md-block" href="<?= the_permalink() ?>">
|
|
|
|
<?php //get_template_part("template-parts/micro/post"); ?>
|
|
|
|
<span class="partners__frame">
|
|
|
|
<figure>
|
|
|
|
<img loading="lazy"
|
|
itemprop="image"
|
|
class="d-block"
|
|
src="<?= the_post_thumbnail_url("thumb-264"); ?>"
|
|
alt="<?= htmlspecialchars( get_the_title() ) ?>" />
|
|
|
|
</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]-->
|