[英]modify Elementor widget
我如何為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”,但我找不到為他添加新圖標的方法
聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.