我听说在更新主题时,子主题中styles.css
文件夹中没有进行的样式更改会丢失/删除。
我想知道这对于我用视觉作曲家或其他方式通过WordPress工具进行的更改是否属实。例如。我只是用视觉作曲家改变了字体颜色,但据我所知,这只是编辑父主题CSS文件,因此我的担忧!
请提示?
答案 0 :(得分:1)
我不认为如果您通过VC
更改颜色,则在更新主题时将失去该更改。 var data = ["0:3", "1:3", "4:5", "a:8", "5:a"],
result = data
.map(function (a) { return a.split(':'); })
.reduce(function (hash) {
return function (r, a) {
if (hash[a[0]] && hash[a[1]]) {
hash[a[0]].push.apply(hash[a[0]], r.splice(r.indexOf(hash[a[1]]), 1)[0]);
hash[a[1]] = hash[a[0]];
return r;
}
if (hash[a[0]]) {
hash[a[1]] = hash[a[0]];
hash[a[1]].push(a[1]);
return r;
}
if (hash[a[1]]) {
hash[a[0]] = hash[a[1]];
hash[a[0]].push(a[0]);
return r;
}
hash[a[0]] = a.slice();
hash[a[1]] = hash[a[0]];
return r.concat([hash[a[0]]]);
};
}(Object.create(null)), []);
console.log(result);
通过内联css更改颜色,因此您应该很好。
答案 1 :(得分:1)
更新插件或主题时,使用Visual Composer等WordPress工具所做的更改不会丢失。如果您想避免创建子主题,为您的网站添加一些CSS的快速解决方案是使用Simple Custom CSS等插件。