carhop__dynamiques-theme__P.../template-parts/articles/article-content.php
Nonimart 98043b37dc
All checks were successful
continuous-integration/drone/push Build is passing
FEATURE Introducing tag list
2025-06-23 16:20:16 +02:00

23 lines
605 B
PHP

<?php
$articleID = $args['ID'];
$articleContent = get_the_content($articleID);
$articleTitle = get_the_title($articleID);
$citeReference = get_field('cite_reference', $articleID);
$tags = get_the_terms($articleID, 'etiquettes');
?>
<article class="article-content">
<ul class="article-tags-list">
<?php foreach ($tags as $tag) : ?>
<li class="article-tag">
<?php echo $tag->name; ?>
</li>
<?php endforeach; ?>
</ul>
<?php the_content(); ?>
<?php if ($citeReference) : ?>
<p id="cite-reference">
<?php echo $citeReference; ?>
</p>
<?php endif; ?>
</article>