有没有办法在核心/标题块中为背景添加渐变支持?
我试过了
扩展settings.supports
具有gradients: true
向主题json添加渐变:
"blocks": {
"core/heading": {
"color": {
"gradients": [
{
"slug": "dark-gradient-with-stripes",
"name": "Dark gradient with stripes",
"gradient": "linear-gradient(to left bottom, rgba(125, 134, 152, .2) 15%, rgba(0, 0, 0, 0) 92.5%)"
}
]
}
}
},
非常感谢你的帮助。
最合适的回答,由SO网友:Tom J Nowell 整理而成
否,目前尚未在标题块中实现渐变支持。
您可以声明它在主题中支持它。json或viasupports
, 但是块中没有任何内容可以读取数据并使用它。梯度支撑必须构建在块中,不能任意插入。
最接近的方法是使用预定义的变体或样式、自定义块或将标题包装在组/封面块中。Composition not modification.