Add telegram to social widget
-
in your (child) theme function.php add the snippet
/* Add telegram messenger fields to social widget*/ add_filter( 'wpcw_widget_social_custom_fields', function ( $fields, $instance ) { $fields['telegram'] = [ 'icon' => 'telegram', //See font-awesome icon slug 'label' => __( 'telegram', 'YOURTEXTDOMAIN' ), 'default' => 'https://t.me/username', 'select' => 'username', 'sanitizer' => 'esc_url_raw', 'escaper' => 'esc_url', 'social' => true, 'target' => '_blank', ]; return $fields; }, 10, 2 );
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Add telegram to social widget’ is closed to new replies.