这次我遇到了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中也是如此?