File: /var/www/chaharrah.tv/root/wp-content/themes/twentytwentyfive/templates/single-doc.php
<?php
get_header();
?>
test test
<main id="site-content" role="main">
<?php
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
?>
<article <?php post_class(); ?>>
<header class="entry-header">
<h1 class="entry-title"><?php the_title(); ?></h1>
</header>
<div class="entry-content">
<?php the_post_thumbnail('large'); ?>
<?php the_content(); ?>
<div class="doc-custom-fields">
<p><strong>پدیدآورنده:</strong> <?php echo esc_html(get_post_meta(get_the_ID(), 'creator', true)); ?></p>
<p><strong>دوره تاریخی:</strong> <?php echo esc_html(get_post_meta(get_the_ID(), 'period', true)); ?></p>
<p><strong>موقعیت:</strong> <?php echo esc_html(get_post_meta(get_the_ID(), 'location', true)); ?></p>
</div>
</div>
</article>
<?php
}
}
?>
</main>
<?php
get_footer();