Changeset 33758
- Timestamp:
- 08/26/2015 08:00:35 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/widgets.php
r33746 r33758 2 2 /** 3 3 * API for creating dynamic sidebar without hardcoding functionality into 4 * themes. Includes both internal WordPress routines and theme use routines. 4 * themes 5 * 6 * Includes both internal WordPress routines and theme use routines. 5 7 * 6 8 * This functionality was found in a plugin before WordPress 2.2 release which … … 14 16 */ 15 17 16 /* Global Variables */ 18 // 19 // Global Variables 20 // 17 21 18 22 /** @ignore */ … … 84 88 ); 85 89 90 /** WP_Widget class */ 86 91 require_once( ABSPATH . WPINC . '/class-wp-widget.php' ); 92 93 /** WP_Widget_Factory class */ 87 94 require_once( ABSPATH . WPINC . '/class-wp-widget-factory.php' ); 95 96 /** Core widgets functionality */ 88 97 require_once( ABSPATH . WPINC . '/widget-functions.php' );
Note: See TracChangeset
for help on using the changeset viewer.