Changeset 16249
- Timestamp:
- 11/09/2010 12:59:49 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/class-wp-terms-list-table.php
r16235 r16249 100 100 ); 101 101 102 if ( 'link_category' == $taxonomy ) 102 if ( 'link_category' == $taxonomy ) { 103 103 $columns['links'] = __( 'Links' ); 104 else 105 $columns['posts'] = __( 'Posts' ); 104 } else { 105 $post_type_object = get_post_type_object( $GLOBALS['typenow'] ); 106 $columns['posts'] = $post_type_object ? $post_type_object->labels->name : __( 'Posts' ); 107 } 106 108 107 109 return $columns;
Note: See TracChangeset
for help on using the changeset viewer.