10 lines
250 B
PHP
10 lines
250 B
PHP
<?php
|
|
$articleID = $args['ID'];
|
|
$articleContent = get_the_content($articleID);
|
|
$articleTitle = get_the_title($articleID);
|
|
?>
|
|
|
|
<article class="article-content">
|
|
<h1><?php echo $articleTitle; ?></h1>
|
|
<?php echo $articleContent; ?>
|
|
</article>
|