- Timestamp:
- 08/17/2018 01:50:26 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/widgets/class-wp-widget-categories.php
r42343 r43571 106 106 </script> 107 107 108 <?php108 <?php 109 109 } else { 110 ?>110 ?> 111 111 <ul> 112 <?php113 $cat_args['title_li'] = '';112 <?php 113 $cat_args['title_li'] = ''; 114 114 115 /**116 * Filters the arguments for the Categories widget.117 *118 * @since 2.8.0119 * @since 4.9.0 Added the `$instance` parameter.120 *121 * @param array $cat_args An array of Categories widget options.122 * @param array $instance Array of settings for the current widget.123 */124 wp_list_categories( apply_filters( 'widget_categories_args', $cat_args, $instance ) );125 ?>115 /** 116 * Filters the arguments for the Categories widget. 117 * 118 * @since 2.8.0 119 * @since 4.9.0 Added the `$instance` parameter. 120 * 121 * @param array $cat_args An array of Categories widget options. 122 * @param array $instance Array of settings for the current widget. 123 */ 124 wp_list_categories( apply_filters( 'widget_categories_args', $cat_args, $instance ) ); 125 ?> 126 126 </ul> 127 <?php127 <?php 128 128 } 129 129
Note: See TracChangeset
for help on using the changeset viewer.