Multiple added icons
-
Awesome plugin – love it! Small issue…I am trying to add multiple icons from fontawesomes I have followed the plug in instructions below.
How do I add multiple icons? I have tried and it crashed my site! I have added the “RSS” feed per below (which is fine) but when I do the same for “Podcast” it crashes the site.
Thanks
add_filter( ‘storm_social_icons_networks’, ‘storm_social_icons_networks’);
function storm_social_icons_networks( $networks ) {$extra_icons = array (
‘/feed’ => array( // Enable this icon for any URL containing this text
‘name’ => ‘RSS’, // Default menu item label
‘class’ => ‘rss’, // Custom class
‘icon’ => ‘icon-rss’, // FontAwesome class
‘icon-sign’ => ‘icon-rss-sign’ // May not be available. Check FontAwesome.
),
);$extra_icons = array_merge( $networks, $extra_icons );
return $extra_icons;}
- The topic ‘Multiple added icons’ is closed to new replies.