移除包裹在
标签上的
标签
以前发布过一篇文章text-indent和图片缩进的问题,给wordpress段落增加缩进属性后图片也会缩进,这样会很影响排版。原因是WordPress 默认会在一个段落中展示图片——它会自动添加一个<p>到图片<img>外。
如果你想移除之可以用下面的代码,这样就不用考虑缩进的问题了。
<?php
add_filter( 'the_content', 'the_content_example' );
function the_content_example( $content ) {
return preg_replace('/<p>\s*(<a .*>)?\s*(<img .* \/>)\s*(<\/a>)?\s*<\/p>/iU', '\1\2\3', $content);
}
// Example source: http://wpsnipp.com/index.php/functions-php/remove-p-tag-from-around-images-in-the_content/
?>
