Changeset 37063
- Timestamp:
- 03/23/2016 04:50:26 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-widget-factory.php
r37062 r37063 47 47 48 48 /** 49 * Register a widget subclass.49 * Registers a widget subclass. 50 50 * 51 51 * @since 2.8.0 52 52 * @access public 53 53 * 54 * @param string $widget_class The name of a {@see WP_Widget}subclass.54 * @param string $widget_class The name of a WP_Widget subclass. 55 55 */ 56 56 public function register( $widget_class ) { … … 59 59 60 60 /** 61 * Un-register a widget subclass.61 * Un-registers a widget subclass. 62 62 * 63 63 * @since 2.8.0 64 64 * @access public 65 65 * 66 * @param string $widget_class The name of a {@see WP_Widget}subclass.66 * @param string $widget_class The name of a WP_Widget subclass. 67 67 */ 68 68 public function unregister( $widget_class ) { … … 71 71 72 72 /** 73 * Utility method for adding widgets to the registered widgets global.73 * Serves as a utility method for adding widgets to the registered widgets global. 74 74 * 75 75 * @since 2.8.0
Note: See TracChangeset
for help on using the changeset viewer.