WordPress 发表文章时,通常都会被自动省略或去掉空行。但是为了文章的美观和易于阅读,很多空 行都是必须的。相信很多读者都有过,在 WordPress 后台编辑文章的时候,明明有按 ENTER 空行,但是发表后发现空行完全不见了。为了解决这个问 题,有的人在编辑的时候使用 HTML 代码、有的人则寻找相关的插件、也有的是使用 window live writer 来写文章。在这里,我给大家推荐一种最简单的办法。通过修改主题模板中的 CSS 和 single.php 的代码就能我完美解决空行的问题。
第一种:打开模板目录中 single.php 文件,查找
<?php the_content(); ?>
然后将其修改为:
<div class=」entry」>
<?php the_content(); ?>
</div>
修改完成后刷新一下页面你就能发现,你的文章已经会空行了。
如果第一种方法对你没作用 (就像我一样的悲剧),那么请试一下第二种。首先打开模板目录下的 style.css 文件,添加上一下代码:
.post .content {
padding:5px 0 5px 5px;
line-height:145%;
overflow:hidden;
}
.post .content p {
margin-bottom:10px;
}
.post .content .under {
height:16px;
line-height:16px;
}
.post .content .under span {
float:left;
margin-right:15px;
}
.post .content h4 {
color:#080;
margin-bottom:10px;
}
.post .content img {
max-width:600px;
}
.post .content ul,
.post .content ol {
padding-bottom:10px;
}
.post .content ul li,
.post .content ol li {
list-style-position:inside;
padding-left:20px;
}
.post .content table {
background:#FFF;
border:1px solid #CCC;
margin:5px 0 10px;
}
.post .content table tr td {
border-top:1px solid #CCC;
padding:2px 10px;
}
.post .content table tr th {
padding:1px 10px;
background:#EDEFF0;
text-align:left;
}
.post .content .boxcaption {
background-image:url(img/postbox.gif);
border-bottom:1px solid #CCC;
}
.post .content .box {
background-image:url(img/postbox.gif);
}
然后在修改你的 single.php 文件,查找
<?php the_content(); ?>
然后修改成:
<div class=」post-content」>
<?php the_content(); ?>
</div>
做完之后再刷新一下页面,你就会发现空行已经可以显示了。