我同意P
大多数内容的标签,因为它使样式更容易。但是我想span
div
iframe
以及可能不放置在p
用于post。
我看到了this question 但这并不能完全解决问题。还有,我看到linked CSSTricks article, 并尝试了一个使用iFrame的示例代码spans
. 我的代码有问题吗?或者我应该如何删除p
我的帖子中html标签中的标签。
以下是我的代码,它不起作用:
function filter_ptags_on_images($content) {
$content = preg_replace(\'/<p>\\s*(<a .*>)?\\s*(<img .* \\/>)\\s*(<\\/a>)?\\s*<\\/p>/iU\', \'\\1\\2\\3\', $content);
return preg_replace(\'/<p>\\s*(<span .*>*.<\\/span>)\\s*<\\/p>/iU\', \'\\1\', $content);
} add_filter(\'the_content\', \'filter_ptags_on_images\');