25 lines
1016 B
PHP
25 lines
1016 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($mots_cles);
|
|
// 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>
|
|
|
|
<ul class="card-frequent-question__tags_container">
|
|
<?php if (!empty($mots_cles)) : ?>
|
|
<?php foreach ($mots_cles as $mot_cle) : ?>
|
|
<li class="tag bg-<?php echo getThematiqueFamilySlug($args['thematique']->slug) ?>-light text-<?php echo getThematiqueFamilySlug($args['thematique']->slug) ?>"><?php echo $mot_cle->name ?></li>
|
|
<?php endforeach; ?>
|
|
<?php endif; ?>
|
|
</ul>
|
|
|
|
</div>
|