Changeset 2013832
- Timestamp:
- 01/17/2019 03:58:42 AM (7 years ago)
- Location:
- collapsed-archives/trunk
- Files:
-
- 2 edited
-
collapsed-archives.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
collapsed-archives/trunk/collapsed-archives.php
r1906723 r2013832 181 181 * Register widget 182 182 */ 183 add_action( 'widgets_init', create_function( '', 'return register_widget("Collapsed_Archives_Widget");' ) ); 183 function collapsed_archives_register_widgets() { 184 register_widget( 'Collapsed_Archives_Widget' ); 185 } 186 add_action( 'widgets_init', 'collapsed_archives_register_widgets' ); 184 187 185 188 /** -
collapsed-archives/trunk/readme.txt
r1990039 r2013832 3 3 Tags: archives, collapsed, collapsing, CSS 4 4 Requires at least: 2.8 5 Tested up to: 5.0 .06 Stable tag: 1. 25 Tested up to: 5.0 6 Stable tag: 1.3 7 7 License: GPLv2 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 20 20 * Option to never automatically expand list for current post / year 21 21 * Choice between displaying archive links in reverse chronological order or chronological order 22 23 = 1.3 (2019-01-16) = 24 * Fixed deprecation warning in PHP 7.2 22 25 23 26 = 1.2 (2018-07-09) = … … 59 62 == Changelog == 60 63 64 = 1.3 (2019-01-16) = 65 * Fixed deprecation warning in PHP 7.2 66 61 67 = 1.2 (2018-07-09) = 62 68 * Added option for never automatically expanding list for current post / year
Note: See TracChangeset
for help on using the changeset viewer.