Social Media Widget - Version 4.0.4

Version Description

  • Update for WP 4.3 compatibility
Download this release

Release Info

Developer grimmdude
Plugin Icon 128x128 Social Media Widget
Version 4.0.4
Comparing to
See all releases

Code changes from version 4.0.3 to 4.0.4

Files changed (2) hide show
  1. readme.txt +5 -1
  2. social-widget.php +3 -3
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: noahkagan
3
  Tags: social media, twitter, facebook, google+, linkedin, youtube, vimeo, skype, yelp, instagram, social, icons
4
  Requires at least: 2.9.2
5
  Tested up to: 4.2.2
6
- Stable tag: 4.0.3
7
 
8
  Adds links to all of your social media and sharing site profiles. Tons of icons come in 3 sizes, 4 icon styles, and 4 animations.
9
 
@@ -180,6 +180,10 @@ Please add a post on the Wordpress.org support forums with the plugin tagged.
180
 
181
  == Changelog ==
182
 
 
 
 
 
183
  = 4.0.3 =
184
 
185
  * Update settings
3
  Tags: social media, twitter, facebook, google+, linkedin, youtube, vimeo, skype, yelp, instagram, social, icons
4
  Requires at least: 2.9.2
5
  Tested up to: 4.2.2
6
+ Stable tag: 4.0.4
7
 
8
  Adds links to all of your social media and sharing site profiles. Tons of icons come in 3 sizes, 4 icon styles, and 4 animations.
9
 
180
 
181
  == Changelog ==
182
 
183
+ = 4.0.4 =
184
+
185
+ * Update for WP 4.3 compatibility
186
+
187
  = 4.0.3 =
188
 
189
  * Update settings
social-widget.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Social Media Widget
4
  * Plugin URI: http://wordpress.org/extend/plugins/social-media-widget/
5
  * Description: Adds links to all of your social media and sharing site profiles. Tons of icons come in 3 sizes, 4 icon styles, and 4 animations.
6
- * Version: 4.0.3
7
  * Author: Noah Kagan
8
  * Author URI: http://sumome.com
9
  **/
@@ -46,7 +46,7 @@ class Social_Widget extends WP_Widget {
46
  $control_ops = array( 'id_base' => 'social-widget' );
47
 
48
  /* Create the widget. */
49
- $this->WP_Widget( 'social-widget', __('Social Media Widget', 'smw'), $widget_ops, $control_ops );
50
 
51
  $this->networks = array(
52
  'facebook' => array(
@@ -1110,7 +1110,7 @@ function socialwidget_global_notice() {
1110
  <?php
1111
  }
1112
  }
1113
- add_action( 'admin_notices', 'socialwidget_global_notice' );
1114
 
1115
 
1116
  function socialwidget_deactivate() {
3
  * Plugin Name: Social Media Widget
4
  * Plugin URI: http://wordpress.org/extend/plugins/social-media-widget/
5
  * Description: Adds links to all of your social media and sharing site profiles. Tons of icons come in 3 sizes, 4 icon styles, and 4 animations.
6
+ * Version: 4.0.4
7
  * Author: Noah Kagan
8
  * Author URI: http://sumome.com
9
  **/
46
  $control_ops = array( 'id_base' => 'social-widget' );
47
 
48
  /* Create the widget. */
49
+ parent::__construct('social-widget', __('Social Media Widget', 'smw'), $widget_ops, $control_ops);
50
 
51
  $this->networks = array(
52
  'facebook' => array(
1110
  <?php
1111
  }
1112
  }
1113
+ //add_action( 'admin_notices', 'socialwidget_global_notice' );
1114
 
1115
 
1116
  function socialwidget_deactivate() {