Changeset 1396344
- Timestamp:
- 04/15/2016 10:17:26 AM (10 years ago)
- Location:
- custom-meta-widget
- Files:
-
- 4 edited
- 1 copied
-
tags/1.4.8 (copied) (copied from custom-meta-widget/trunk)
-
tags/1.4.8/customMeta.php (modified) (2 diffs)
-
tags/1.4.8/readme.txt (modified) (3 diffs)
-
trunk/customMeta.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
custom-meta-widget/tags/1.4.8/customMeta.php
r1319432 r1396344 3 3 Plugin URI: http://shinraholdings.com/plugins/custom-meta-widget/ 4 4 Description: Clone of the standard Meta widget with options to hide thlogin, admin, entry and comment feed, WordPress.org and /custom links. 5 Version: 1.4. 75 Version: 1.4.8 6 6 Author: bitacre 7 7 Author URI: http://shinraholdings.com/ … … 22 22 /** 23 23 * CONSTRUCTOR 24 */ 25 function customMetaWidget() { 24 * 25 * Thank you to dsmiller for fixing the deprecated constructor 26 * https://wordpress.org/support/topic/updated-constructor?replies=4#post-8147479 27 */ 28 function __construct() { 26 29 // set widget options 27 30 $widget_ops = array ( 28 31 'classname' => 'customMetaWidget', 29 32 'description' => __( 'Hide the individual log in/out, admin, feed and WordPress links', 'customMetaWidget' ) 30 ); 31 33 ); 34 32 35 // extend widget 33 $this->WP_Widget( 'customMetaWidget', 'Custom Meta', $widget_ops );36 parent::__construct( 'customMetaWidget', __('Custom Meta', 'customMetaWidget'), $widget_ops ); 34 37 } 35 38 -
custom-meta-widget/tags/1.4.8/readme.txt
r1319432 r1396344 5 5 Tags: meta,hide,link,admin,simple,widget,default,wordpress.org,change,rss,remove,login 6 6 Requires at least: 2.8 7 Tested up to: 4. 48 Stable tag: 1.4. 77 Tested up to: 4.5 8 Stable tag: 1.4.8 9 9 10 10 Clone of the standard Meta widget plus options to hide log in/out, admin, feed and WordPress.org/custom links. … … 49 49 50 50 == Changelog == 51 = 1.4.8 = 52 * Updated deprecated __construct() method 53 * Thank you to [dsmiller](https://wordpress.org/support/topic/updated-constructor?replies=4#post-8147479) 54 51 55 = 1.4.7 = 52 56 * Purely cosmetic update for WordPress 4.4 … … 129 133 130 134 == Upgrade Notice == 135 = 1.4.8 = 136 * Replaces deprecated function throwing debug error message 137 131 138 = 1.4.7 = 132 139 * Purely cosmetic update for WordPress 4.4 -
custom-meta-widget/trunk/customMeta.php
r1319432 r1396344 3 3 Plugin URI: http://shinraholdings.com/plugins/custom-meta-widget/ 4 4 Description: Clone of the standard Meta widget with options to hide thlogin, admin, entry and comment feed, WordPress.org and /custom links. 5 Version: 1.4. 75 Version: 1.4.8 6 6 Author: bitacre 7 7 Author URI: http://shinraholdings.com/ … … 22 22 /** 23 23 * CONSTRUCTOR 24 */ 25 function customMetaWidget() { 24 * 25 * Thank you to dsmiller for fixing the deprecated constructor 26 * https://wordpress.org/support/topic/updated-constructor?replies=4#post-8147479 27 */ 28 function __construct() { 26 29 // set widget options 27 30 $widget_ops = array ( 28 31 'classname' => 'customMetaWidget', 29 32 'description' => __( 'Hide the individual log in/out, admin, feed and WordPress links', 'customMetaWidget' ) 30 ); 31 33 ); 34 32 35 // extend widget 33 $this->WP_Widget( 'customMetaWidget', 'Custom Meta', $widget_ops );36 parent::__construct( 'customMetaWidget', __('Custom Meta', 'customMetaWidget'), $widget_ops ); 34 37 } 35 38 -
custom-meta-widget/trunk/readme.txt
r1319432 r1396344 5 5 Tags: meta,hide,link,admin,simple,widget,default,wordpress.org,change,rss,remove,login 6 6 Requires at least: 2.8 7 Tested up to: 4. 48 Stable tag: 1.4. 77 Tested up to: 4.5 8 Stable tag: 1.4.8 9 9 10 10 Clone of the standard Meta widget plus options to hide log in/out, admin, feed and WordPress.org/custom links. … … 49 49 50 50 == Changelog == 51 = 1.4.8 = 52 * Updated deprecated __construct() method 53 * Thank you to [dsmiller](https://wordpress.org/support/topic/updated-constructor?replies=4#post-8147479) 54 51 55 = 1.4.7 = 52 56 * Purely cosmetic update for WordPress 4.4 … … 129 133 130 134 == Upgrade Notice == 135 = 1.4.8 = 136 * Replaces deprecated function throwing debug error message 137 131 138 = 1.4.7 = 132 139 * Purely cosmetic update for WordPress 4.4
Note: See TracChangeset
for help on using the changeset viewer.