Files
profile/template-parts/single/post-most-popular-item.php
Andrey Kuvshinov 8fc8cbae32 add files
2025-07-09 21:21:17 +03:00

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]-->