在<p>标签中包裹迷路文本</p>

时间:2009-11-14 04:00:18

标签: php wordpress

Wordpress问题..如何在P标签中包装流浪文本?

示例:

前 -

<div class = "content">
    <img src = "hello.jpg"/>
    <h1>Introduction</h1>
    Hello! this is stray text that I want to wrap with p tags
    Hello! This is another set of stray text
</div>

后 -

<div class = "content">
    <img src = "hello.jpg"/>
    <h1>Introduction</h1>
    <p>Hello! this is stray text that I want to wrap with p tags</p>
    <p>Hello! This is another set of stray text</p>
</div>

2 个答案:

答案 0 :(得分:3)

Wordpress使用名为wpautop的插件。此脚本会自动添加&lt; p&gt; &LT; / p为H.标记到新行。在大多数情况下,这很有帮助。有时,它可能是一种痛苦。在这种情况下,您可以使用Disable Autop Plugin

您可以通过更改核心Wordpress脚本来手动控制它。我建议使用插件。

答案 1 :(得分:0)

流浪文字来自何处?它是否被输入WordPress WYSIWYG编辑器?如果是这样的话,如果你在文本之前和之后有空行,它会自动将文本包装在P标签中。