如果这些帖子已经显示在您的页面上,只是有一堆不必要的文本要删除,请执行以下操作:1。打开主页的模板文件(它可以在不同的主题中命名为不同的文件,因此无法给出文件的确切名称,但通常它们的名称类似index.php或home.php)。查找以下代码位:
<?php while (have_posts()): the_post; ?> // indicates beginning of post loop.
..... // there might be some other lines of code here, but eventually you will find a line that contains:
<?php the_title(); ?> // keep this line
..... // you can start deleting code that follows after the previous line one by one line and see what happens.
<?php endwhile; ?> // Do NOT delete this line, this indicates the post loop end.
当我尝试代码并感到不确定时,我会更改一件事,保存、刷新浏览器中的页面并根据结果进行操作。这样,如果出现问题,您可以随时按撤消。如果你是全新的,我建议你保存一份你正在编辑的文件的副本,这样如果一切都出了问题,你可以用原始文件替换损坏的副本,然后重新开始。
建议阅读:http://codex.wordpress.org/The_Loop