carhop__dynamiques-theme__P.../template-parts/articles/article-content.php
2025-06-12 08:53:54 +02:00

10 lines
242 B
PHP

<?php
$articleID = $args['ID'];
$articleContent = get_the_content($articleID);
$articleTitle = get_the_title($articleID);
?>
<div class="article-content">
<h1><?php echo $articleTitle; ?></h1>
<?php echo $articleContent; ?>
</div>