Changeset 38777
- Timestamp:
- 10/11/2016 03:26:11 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/category-template.php
r38307 r38777 1143 1143 if ( null === $before ) 1144 1144 $before = __('Tags: '); 1145 echo get_the_tag_list($before, $sep, $after); 1145 1146 $the_tags = get_the_tag_list( $before, $sep, $after ); 1147 1148 if ( ! is_wp_error( $the_tags ) ) { 1149 echo $the_tags; 1150 } 1146 1151 } 1147 1152
Note: See TracChangeset
for help on using the changeset viewer.