Advanced Social icons

plugin banner

Advanced social icons help you quickly add icons with links to your profiles on different social media platforms. The plugin uses icons from Font Awes …

Author:Galaxy Weblinks (profile at wordpress.org)
WordPress version required:4.9
WordPress version tested:6.4.3
Plugin version:3.2
Added to WordPress repository:05-02-2020
Last updated:19-01-2024
Rating, %:0
Rated by:0
Plugin URI:
Total downloads:1 292
Active installs:20+
plugin download
Click to start download

Advanced social icons help you quickly add icons with links to your profiles on different social media platforms. The plugin uses icons from Font Awesome, which gives you the possibility to display various popular social icons via widgets. You can use custom icons to add links to anything you want.

No configuration is necessary, other than having links to your social media profiles in the built-in WordPress menus. Add links to any of these social sites under Appearance > Menus, then enable the plugin.

Supported Sites

bitbucket.org           dribbble.com         dropbox.com
facebook.com            flickr.com           foursquare.com
github.com              gittip.com           instagram.com
linkedin.com            mailto:(email)       pinterest.com
plus.google.com         renren.com           stackoverflow.com
trello.com              tumblr.com           twitter.com          
vk.com                  weibo.com            xing.com
youtube.com

* Requires asi_latest_social_icons be turned on. (See below.)

Option: Icon Sizes

To vary icon sizes, add this to your theme’s functions.php file: (Default is 2x)

add_filter( 'asi_social_icons_size', function(){return "normal"; } );
add_filter( 'asi_social_icons_size', function(){return "large"; } );
add_filter( 'asi_social_icons_size', function(){return "2x"; } );
add_filter( 'asi_social_icons_size', function(){return "3x"; } );
add_filter( 'asi_social_icons_size', function(){return "4x"; } );

Option: Add More Icons

Add icons from FontAwesome for other URLs. For example, an RSS feed:

add_filter( 'asi_networks_social_icons', 'asi_networks_social_icons');
function asi_networks_social_icons( $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;
}

FEATURES AND OPTIONS

Supports FontAwesome icons.
Support custom icons
Drag and drop for icon sorting.
Option to easily change icon size.
More features coming on updates.


Screenshots
FAQ
ChangeLog