修改wordpress内容页自动添加的P标签成别的标签比如(<div>)

找到的答案都是去掉P标签,根本就没有说修改成别的教程!!求教

    function my_the_content_filter($content) {
        $content = str_replace("<p>","<div>",$content);
        $content = str_replace("</p>","</div>",$content);
       return $content;
     }
     add_filter( 'the_content', 'my_the_content_filter' );


加到function.php 里面

温馨提示:答案为网友推荐,仅供参考
相似回答