标签: php
如何删除<h2>标记或将其更改为<div>
<h2>
<div>
我尝试过:
$str= '<h2 class="widgettitle"> Cart </h2>'; $new_string = strip_tags($str);
原始文本
<h2 class = "widgettitle"> Cart </ h2>
需要更改为
<div class = "widgettitle"> Cart </ div>
我需要可以在functions.php中编写的代码