FEATURE Handling article tags and article references

This commit is contained in:
Nonimart 2025-06-25 18:10:57 +02:00
parent 2817ff670e
commit 866f25d73f

View File

@ -16,10 +16,15 @@ $revueID = get_field('related_revue', get_the_ID());
<input type="text" placeholder="Rechercher"> <input type="text" placeholder="Rechercher">
</div> </div>
<?php get_template_part('template-parts/articles/article-tags'); ?>
<?php get_template_part('template-parts/articles/index-panel'); ?> <?php get_template_part('template-parts/articles/index-panel'); ?>
</aside> </aside>
<div class="content-area"> <div class="content-area">
<?php get_template_part('template-parts/articles/article-references', null, array(
'postId' => get_the_ID()
)); ?>
<?php get_template_part('template-parts/articles/article-authors', null, array( <?php get_template_part('template-parts/articles/article-authors', null, array(
'postId' => get_the_ID() 'postId' => get_the_ID()
)); ?> )); ?>