homegrade_theme_production/template-components/card-frequent-question.php

22 lines
934 B
PHP

<?php
$mots_cles = get_the_terms($args['post_ID'], 'mots-cles');
$thematique_icon = get_field('taxonomy_pictures', $args['thematique'])['icon'];
// echo '<pre>';
// print_r($thematique_icon);
// // print_r($args);
// echo '</pre>';
?>
<div class="card-frequent-question">
<img class="card-frequent-question__icon" src="<?php echo $thematique_icon['url'] ?>" alt="">
<h4 class="card-frequent-question__title text-<?php echo getThematiqueFamilySlug($args['thematique']->slug) ?>"><?php echo $args['thematique']->name ?></h4>
<p class=""><?php echo $args['post_title'] ?></p>
<div class="card-frequent-question__tags_container">
<?php foreach ($mots_cles as $mot_cle) : ?>
<p class="tag bg-<?php echo getThematiqueFamilySlug($args['thematique']->slug) ?>-light text-<?php echo getThematiqueFamilySlug($args['thematique']->slug) ?>"><?php echo $mot_cle->name ?></p>
<?php endforeach; ?>
</div>
</div>