19 lines
401 B
PHP
19 lines
401 B
PHP
<?php
|
|
$articleID = $args['ID'];
|
|
$articleContent = get_the_content($articleID);
|
|
$articleTitle = get_the_title($articleID);
|
|
$citeReference = get_field('cite_reference', $articleID);
|
|
|
|
|
|
?>
|
|
|
|
<article class="post-content entry-content">
|
|
|
|
<?php the_content(); ?>
|
|
|
|
<?php if ($citeReference) : ?>
|
|
<p id="cite-reference">
|
|
<?php echo $citeReference; ?>
|
|
</p>
|
|
<?php endif; ?>
|
|
</article>
|