我与“语言压力”模板存在一个小小 co的问题。 这是在模板中使用的代码一:
<?php echo teaser(40); ?>
在我的职能中,我利用这一手段来打断标签,只从允许的标签中获取内容。
<?php
function teaser($limit) {
$content = explode( , get_the_content(), $limit);
if (count($content)>=$limit) {
array_pop($content);
$content = implode(" ",$content). ... ;
} else {
$content = implode(" ",$content);
}
$content = preg_replace( /[.+]/ , , $content);
$content = apply_filters( the_content , $content);
$content = str_replace( ]]> , ]]> , $content);
$content = strip_tags($content, <p><a><ul><li><i><em><strong> );
return $content;
}
?>
问题: 我使用上述代码,从内容中删除标签,但语言压力已经将图像标签放在了段落中。 因此,结果就是一个空洞的 paragraph子,其图像被抹去。
Just for the sake of cleaning up my code and useless empty tags. My question is how to remove empty paragraph tags?
<p></p>
预祝福!