Ticket #20913: ms-themes-addcolumn.patch
File ms-themes-addcolumn.patch, 997 bytes (added by , 13 years ago) |
---|
-
wp-admin/includes/class-wp-ms-themes-list-table.php
175 175 function get_columns() { 176 176 global $status; 177 177 178 return array( 179 'cb' => '<input type="checkbox" />', 180 'name' => __( 'Theme' ), 181 'description' => __( 'Description' ), 182 ); 183 } 178 $themes_columns = array( 179 'cb' => '<input type="checkbox" />', 180 'name' => __( 'Theme' ), 181 'description' => __( 'Description' ), 182 ); 184 183 184 $themes_columns = apply_filters( 'manage_themes_custom_column_header', $themes_columns ); 185 186 return $themes_columns; 187 } 188 185 189 function get_sortable_columns() { 186 190 return array( 187 191 'name' => 'name',