【发布时间】:2013-01-07 16:48:56
【问题描述】:
我的 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();
?>
我该如何解决这个问题?
【问题讨论】:
-
您的设置中的“首页显示”当前设置是什么?
-
首页显示最近的帖子
标签: php wordpress wordpress-theming