<p> tag the_content()

时间:2013-01-25 作者:Niels Jansen

我正在尝试配置我的内容页。php,但我正在努力解决一些“错误”。

<article id="post-<?php the_ID(); ?>">
<div class="page_content">
<h1><?php the_title(); ?></h1>
**<p class="page_tekst">
<?php the_content(); ?>
</p>**
</div>
</article>
这是我的css内容

.page_content
{
    width:820px;
    height:auto;
    margin-bottom:50px;
}

.page_tekst
{
    text-align:justify;
    float:left;
}
这是我的浏览器中的结果

<article id="post-81">
<div class="page_content">
<h1>test</h1>
<p class="page_tekst">
<p>This is a test based on the current css code</p>
</p>
</article>
上的我的css。page\\u tekst不起作用。我也明白为什么,但有解决办法吗?你能做一个div或p标签,给它打一个电话,然后把内容放在这个标签里,而不需要用内容做另一个p标签吗?

1 个回复
SO网友:Milo

WordPress在中插入p标记the_content(), 否则,您的内容很难包含多个段落。如果您想以p WordPress插入为目标,只需将css更改为:

.page_content p
{
    text-align:justify;
    float:left;
}
然后取下包装<p> 标签

结束

相关推荐