我在主窗口小部件中有一个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
是父控件。但是代码不起作用。