我在帖子上有一个简短的描述但是当我尝试显示描述wordpress添加<p>
或<br>
或<strong>
时,如何删除?看看这张照片:
我的代码就是:
</span>
<span class="address-place">
<?php echo the_excerpt (); ?>
<hr>
</span>
答案 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()