WordPress怎么防止span标签被过滤

追格官方小助手/ 2022年03月24日/ WordPress/ 浏览 1511

我们在WordPress网站编辑文章添加html代码段时,WordPress可能会自动过滤掉 span标签,那么我们怎么防止span标签被过滤呢?


将下面代码放到当前WordPress模板functions.php文件内就可以了。


    function override_mce_options($initArray)
    {
        $opts = '*[*]';
        $initArray['valid_elements'] = $opts;
        $initArray['extended_valid_elements'] = $opts;
        return $initArray;
    }
    add_filter('tiny_mce_before_init', 'override_mce_options');


发表评论

暂无评论,抢个沙发...

客服 工单