Add RSS
-
I added the code below to PHP as per the description, to add an RSS icon.
Unfortunately it crashed the site returning errors so i’ve had to remove it.Have i missed a step or gone wrong somewhere?
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; }
[Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]
Viewing 11 replies - 1 through 11 (of 11 total)
Viewing 11 replies - 1 through 11 (of 11 total)
- The topic ‘Add RSS’ is closed to new replies.