我的 Wordpress 网站没有使用 single.php 在网站上显示帖子。每次我打开一个帖子时,它都会在 index.php 中打开它。
我的 single.php 看起来像这样
<?php get_header(); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<? echo the_content(); ?>
<? endwhile;
endif; ?>
<? get_footer();
?>
我怎样才能解决这个问题?