25 lines
752 B
PHP
25 lines
752 B
PHP
<?php
|
|
$title = $args['title'];
|
|
$ID = $args['ID'];
|
|
$thumbnail = get_the_post_thumbnail($ID, 'full');
|
|
$alt = get_post_meta($ID, 'alt_text', true);
|
|
|
|
?>
|
|
|
|
<a href="<?php echo get_the_permalink($ID); ?>" class="revue-recommandation-card">
|
|
<div class="content-meta">
|
|
<span class="content-meta__type content-meta__type--revue">Revue</span>
|
|
</div>
|
|
<h3 class="revue-recommandation-card__title"><?php echo $title; ?></h3>
|
|
<?php if ($thumbnail) : ?>
|
|
<div class="revue-recommandation-card__thumbnail">
|
|
<?php echo $thumbnail; ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
<div class="cta cta--go cta--primary">
|
|
<img src="<?php echo get_template_directory_uri(); ?>/resources/img/carhop-fleche-full.svg" alt="<?php echo $alt; ?>">
|
|
</div>
|
|
|
|
</a>
|