具有RangeControl的WordPress Gutenberg块模板列

时间:2019-02-25 14:10:45

标签: wordpress block wordpress-gutenberg

我有以下代码:

    const BLOCKS_2COL_TEMPLATE = [
    ['core/columns', {
        columns: 2,
        className: "row",
    },
        [
            ['core/column', {
                className: "col-md-6",
            },],
            ['core/column', {
                className: "col-md-6",
            },],
        ]
    ],
];

那很好。但是,如果选择块内容,则可以通过RangeControl字段选择更多列。我该如何预防?

类似这样的东西:

['core/columns', {
    columns: 2,
    className: "row",
    RangeControl: {
        min: 2,
        max: 2,
    }
},

但这不起作用。

0 个答案:

没有答案