سلام من اینجا کدم رو نوشتم ولی فقط هدر و منو رو برام میاره حتی فوتر رو هم لود نمیکنه اگه میشه راهنمایی کنید ممنون
<?php get_header();
get_template_part('templates/header');
get_template_part('templates/nav');
?>
<div class="row">
<div class="col-12">
<?php if (have_posts()):
while (have_posts()):the_post(); ?>
<div class="breadcrumb">
<?php
if ( function_exists('yoast_breadcrumb') ) {
yoast_breadcrumb( '<p id="breadcrumbs">','</p>' );
}
?></div>
<div class="bg-green"><h3 class="mt-4 py-2 pb-1 text-white text-center"><?php the_title(); ?></h3></div>
<div class="content mt-5"><?php the_content(); ?></div>
<div class="mr-3 bg-light mb-4 mt-4 cmd">
<span class="mr-4"><i class="fas fa-calendar-alt"></i> <?php the_date('y/m/d'); ?></span>
<span class="mr-4"><i class="fas fa-user"></i><?php the_author(); ?></span>
<span class="mr-4"><i class="fas fa-comment"><?php comments_number(); ?></i></span>
</div>
<div class=" mr-5 mb-5 badge-pill badge-secondery"><?php the_tags(); ?></div>
</div>
<?php endwhile; endif ?>
</div>
<?php get_footer(); ?>