FEAT Introducing component

This commit is contained in:
Nonimart 2025-06-12 08:53:54 +02:00
parent ea89cd61cc
commit 8895ca48a0

View File

@ -0,0 +1,10 @@
<?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>