我猜了一点,但根据你的描述,你可能只有index.php
运行这两个页面的文件。如果您创建single.php
主题中与您在index.php
在编辑之前,您应该拥有所需的内容。
WordPress将查看主题for files of particular names 显示内容。最终,如果没有找到专门的文件,index.php
将用于显示大部分内容。我想这就是你的情况。
另一种方法编辑content.php
并将呼叫更改为the_excerpt
到
if (is_singular()) {
the_content(); // there may be parameters in your existing code
} else {
the_excerpt(); // there may be parameters in your existing code
}
除非你有
content-single.php
在这种情况下,您需要查看该文件,但听起来是一样的
content.php
正在使用。