Custom Social Media Icon
-
I’m trying to add a custom social media icon but it is not working.
The graduation-cap icon is available in the free font-awesome icons (https://fontawesome.com/icons?d=listing&m=free)
Following goes the code I’m using:
add_filter( 'wpcw_widget_social_custom_fields', function ( $fields, $instance ) { $fields['lattes'] = [ 'icon' => 'graduation-cap', // See font-awesome icon slug 'label' => __( 'Lattes', 'YOURTEXTDOMAIN' ), 'default' => 'https://lattes.cnpq.br/username', 'select' => 'username', 'sanitizer' => 'esc_url_raw', 'escaper' => 'esc_url', 'social' => true, 'target' => '_blank', ]; return $fields; }, 10, 2 );
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
- The topic ‘Custom Social Media Icon’ is closed to new replies.