在WordPress中为Elementor自定义TinyMCE

时间:2019-02-14 11:38:40

标签: wordpress tinymce elementor

这次我遇到了WordPress删除中断的问题,这次是在Elementor中单击Text-Editor元素时。我一直在主题主题的functions.php中使用以下过滤器

    function myPromisesChain(data)
{
    return $.when(data)
        .then(firstStep)
        .then(secondptStep)            
        .then(function(data){
            var counter = 0;
            var limit = 3;
            while(counter<limit){
                  thirdStep(data.transaction[counter]);
                  counter++;
            }
            return data;
        })
        // ...n Step
        .then(finalStep)
        .always(function(data){
            console.log('FINISHED: ' + JSON.stringify(data));
        });
}

但是,通过在Elementor中单击/编辑Text-Editors似乎仍然可以删除中断。是否有机会完全关闭自动格式设置,即使在Elementor的Text-Editor中也是如此?

0 个答案:

没有答案