Changeset 2653149
- Timestamp:
- 01/05/2022 02:22:35 PM (4 years ago)
- Location:
- f2-tag-cloud-widget
- Files:
-
- 4 edited
- 1 copied
-
tags/0.3.2 (copied) (copied from f2-tag-cloud-widget/trunk)
-
tags/0.3.2/f2-tagcloud.php (modified) (3 diffs)
-
tags/0.3.2/readme.txt (modified) (2 diffs)
-
trunk/f2-tagcloud.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
f2-tag-cloud-widget/tags/0.3.2/f2-tagcloud.php
r903954 r2653149 3 3 Plugin Name: F2 Tag Cloud Widget 4 4 Plugin URI: http://www.fsquared.co.uk/software/f2-tagcloud/ 5 Version: 0.3. 15 Version: 0.3.2 6 6 Author: fsquared limited 7 7 Author URI: http://www.fsquared.co.uk … … 9 9 Description: Tag cloud widget which exposes more of the internal Wordpress tagcloud options. 10 10 11 Copyright(c)2012 fsquared limited. http://www.fsquared.co.uk11 Copyright(c)2012-2022 fsquared limited. http://www.fsquared.co.uk 12 12 13 13 This program is free software; you can redistribute it and/or … … 355 355 356 356 /* Last step, add this widget into the init action. */ 357 add_action( 'widgets_init', create_function( '', 'register_widget( "F2_Tag_Cloud_Widget" );' ));357 add_action( 'widgets_init', function() { register_widget( "F2_Tag_Cloud_Widget" ); } ); 358 358 ?> -
f2-tag-cloud-widget/tags/0.3.2/readme.txt
r1773909 r2653149 3 3 Tags: tags widget 4 4 Requires at least: 2.8 5 Tested up to: 4.96 Stable tag: trunk5 Tested up to: 5.8.2 6 Stable tag: 0.3.2 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 72 72 = 0.3.1 = 73 73 Minor bug fix for a mis-applied filter. 74 75 = 0.3.2 = 76 Removed deprecated 'create_function' call. -
f2-tag-cloud-widget/trunk/f2-tagcloud.php
r903954 r2653149 3 3 Plugin Name: F2 Tag Cloud Widget 4 4 Plugin URI: http://www.fsquared.co.uk/software/f2-tagcloud/ 5 Version: 0.3. 15 Version: 0.3.2 6 6 Author: fsquared limited 7 7 Author URI: http://www.fsquared.co.uk … … 9 9 Description: Tag cloud widget which exposes more of the internal Wordpress tagcloud options. 10 10 11 Copyright(c)2012 fsquared limited. http://www.fsquared.co.uk11 Copyright(c)2012-2022 fsquared limited. http://www.fsquared.co.uk 12 12 13 13 This program is free software; you can redistribute it and/or … … 355 355 356 356 /* Last step, add this widget into the init action. */ 357 add_action( 'widgets_init', create_function( '', 'register_widget( "F2_Tag_Cloud_Widget" );' ));357 add_action( 'widgets_init', function() { register_widget( "F2_Tag_Cloud_Widget" ); } ); 358 358 ?> -
f2-tag-cloud-widget/trunk/readme.txt
r1773909 r2653149 3 3 Tags: tags widget 4 4 Requires at least: 2.8 5 Tested up to: 4.96 Stable tag: trunk5 Tested up to: 5.8.2 6 Stable tag: 0.3.2 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 72 72 = 0.3.1 = 73 73 Minor bug fix for a mis-applied filter. 74 75 = 0.3.2 = 76 Removed deprecated 'create_function' call.
Note: See TracChangeset
for help on using the changeset viewer.