Elementor-从皮肤更新父控件

时间:2019-11-26 18:01:04

标签: wordpress elementor

我在主窗口小部件中有一个ID为section_button的按钮部分。我试图通过在小部件外观类中添加下一个代码来从外观更新按钮控件。

public function _register_controls_actions() {
        add_action(
            'elementor/element/tcxn-post/section_button/before_section_start',
            [
                $this,
                'update_button_controls'
            ]
        );

    }
...
public function update_button_controls( Widget_Base $widget ) {
        $this->parent = $widget;

        $widget->update_control(
            'button_type',
            [
                'default' => 'btn-primary'
            ]
        );
    }

button_type是父控件。但是代码不起作用。

0 个答案:

没有答案