Files
profile/template-parts/archive/cell-image.php

19 lines
554 B
PHP
Raw Permalink Normal View History

2025-07-09 21:21:17 +03:00
<!--[archive/cell-image]-->
<?php if( has_post_thumbnail() ) : ?>
<img loading="lazy"
src="<?= the_post_thumbnail_url($args["wide"] && !wp_is_mobile() ? "large" : "post-thumbnail"); ?>"
alt="<?= htmlspecialchars( get_the_title() ) ?>"
/>
2025-08-27 00:00:02 +03:00
<?php else : //1361306 ?>
2025-07-09 21:21:17 +03:00
<img loading="lazy"
src="<?= wp_get_attachment_image_url( 1357368, $args["wide"] && !wp_is_mobile() ? "large" : "post-thumbnail"); ?>"
alt="<?= htmlspecialchars( get_the_title() ) ?>"
/>
<?php endif; ?>
<!--[archive/cell-image]-->