Changeset 41221 for trunk/src/wp-admin/includes/template.php
- Timestamp:
- 08/03/2017 04:12:25 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/template.php
r41184 r41221 215 215 <?php 216 216 /** This filter is documented in wp-includes/category-template.php */ 217 echo esc_html( apply_filters( 'the_category', $term->name ) );217 echo esc_html( apply_filters( 'the_category', $term->name, '', '' ) ); 218 218 ?> 219 219 </label> … … 256 256 257 257 /** This filter is documented in wp-includes/category-template.php */ 258 $name = esc_html( apply_filters( 'the_category', $category->name ) );258 $name = esc_html( apply_filters( 'the_category', $category->name, '', '' ) ); 259 259 $checked = in_array( $cat_id, $checked_categories ) ? ' checked="checked"' : ''; 260 260 echo '<li id="link-category-', $cat_id, '"><label for="in-link-category-', $cat_id, '" class="selectit"><input value="', $cat_id, '" type="checkbox" name="link_category[]" id="in-link-category-', $cat_id, '"', $checked, '/> ', $name, "</label></li>";
Note: See TracChangeset
for help on using the changeset viewer.