Linux 软件免费装
Banner图

Social Icons Widget

开发者 nisbetcreative
更新时间 2018年10月27日 22:52
PHP版本: 3.5.1 及以上
WordPress版本: 4.5
版权: GPLv3 or later
版权网址: 版权信息

标签

widget profile media social icons 500px Email WordPress follow RSS Facebook Flickr Twitter YouTube Vimeo Technorati Instagram Pinterest StumbleUpon Google+ Tumblr LinkedIn GitHub Vine Yelp Kickstarter Klout Envato Dribbble About.me Behance Codepen FourSquare Medium Path Speaker Deck Zerply

下载

13.04 13.05 14.03 14.04 14.05 14.07 14.08 14.10 15.06 15.07 15.10 16.04 16.07

详情介绍:

The Social Media Icons widget takes a simple, extendable approach to displaying links to your social media profiles in WordPress. The purpose of this plugin was to strip away the complexities I found most other plugins to have and simply display a set of basic social icons in an unordered list. There's no frills and no fanciness, making it easy to style to your website's look. Icons Default icons are from the Simple Icons set created by Dan Leech. Envelope designed by Cy Me from the Noun Project

安装:

Download the zip file and upload to your WordPress installation. Upon activation, widget is available under Appearance > Widgets. Drag the widget into your sidebar, adjust the settings, and populate the profiles you wish to show on your website.

屏幕截图:

  • Some examples of how the plugin displays by default in its various settings available via the widget.
  • Widget settings via the Appearance > Widgets screen.

升级注意事项:

15.10
  • Removed all of the floats in favor of display:inline-block instead
  • Style now queues above theme's style.css in most themes
14.03 Removed @getimagesize function for compatibility purposes. New accounts are now added via WordPress filter rather than editing core plugin code 13.05 Fixed image and CSS paths 13.04 Initial commit to WordPress plugin repository

常见问题:

Custom Icons

Custom icons are easy to add. To enable them, select "Custom" from the Icon Type dropdown in the widget settings. In the directory of your active theme, create a folder titled 'social_icons'. Within that directory, add folders titled 'small', 'medium', and 'large' for each icon size you wish to use. Add your icons in .gif, .jpg, .jpeg, or .png format, following the naming format used for the default set of icons.

Extending

Developers can easily add more social media websites by creating a filter in the active theme's functions.php file like such: function add_new_icons($icon_list) { $icon_list['Full Website Name'] = 'full-website-id'; return $icon_list; } add_filter('social_icon_accounts', 'add_new_icons'); The full-website-id should reflect the name of the image you create in each of the icon folder sizes, or in your custom icon directory. It is also used to populate the class field of the icon when the widget displays. The Social Icon Widget looks for .gif, .jpg, .jpeg, and .png in order and returns the first extention it finds.

Altering Widget Output

Output of each icon can be adjusted with the social_icon_output filter: function social_icons_html_output($format) { $format = '

  • %3$s%4$s
  • '; return $format; } add_filter('social_icon_output', 'social_icons_html_output'); The opening and closing unordered list tags can be edited or changed with the social_icon_opening_tag and social_icon_closing_tag filters: function social_icons_change_opening($opening) { $opening = '
      '; return $opening; } add_filter('social_icon_opening_tag', 'social_icons_change_opening'); function social_icons_change_closing($closing) { $closing = '
    '; return $closing; } add_filter('social_icon_closing_tag', 'social_icons_change_closing');

    更新日志:

    16.07 15.10 15.10 15.07 15.06 14.10 14.08 14.07 14.05 14.04 14.03 13.05 13.04 trunk