如何从the_excerpt()中删除<p>和<br/>?

时间:2016-03-13 08:34:16

标签: php html wordpress

我在帖子上有一个简短的描述但是当我尝试显示描述wordpress添加<p><br><strong>时,如何删除?看看这张照片:

enter image description here

我的代码就是:

        </span>
            <span class="address-place">
             <?php echo the_excerpt (); ?>
             <hr>
        </span>

3 个答案:

答案 0 :(得分:2)

strip_tags似乎是您正在寻找的内容:

<?php echo strip_tags(the_excerpt()); ?>

答案 1 :(得分:0)

<?php
$myExcerpt = get_the_excerpt();
$tags = array("<p>", "</p>");
$myExcerpt = str_replace($tags, "", $myExcerpt);
?>
</span>
<span class="address-place">
<?php   echo $myExcerpt; ?>
<hr>
</span>

答案 2 :(得分:0)

答案在这里。也许对某人有用。 get_the_excerpt()