修改Elementor小部件

时间:2018-11-14 18:48:42

标签: php wordpress elementor

我如何为Widget_Social_Icons()添加新的社交图标?

我可以为Control_Icon()添加新图标

function jet_modify_controls( $controls_registry ) {
    // Get existing icons
    $icons = $controls_registry->get_control( 'icon' )->get_settings( 'options' );
    // Append new icons
    $new_icons = array_merge(
        array(
            'fab fa-viber' => 'viber',
        ),
        $icons
    );
    // Then we set a new list of icons as the options of the icon control
    $controls_registry->get_control( 'icon' )->set_settings( 'options', $new_icons );
}
add_action( 'elementor/controls/controls_registered', 'jet_modify_controls', 99, 1 );

我发现动作“ elementor / widgets / widgets_registered” 但我找不到为他添加新图标的方法

0 个答案:

没有答案