私の Wordpress Web サイトは、single.php を使用して Web サイトに投稿を表示していません。投稿を開くたびに、index.php で開きます。
私のsingle.phpは次のようになります
<?php get_header(); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<? echo the_content(); ?>
<? endwhile;
endif; ?>
<? get_footer();
?>
どうすればこれを修正できますか?