- Timestamp:
- 06/20/2020 12:12:39 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-ms-themes-list-table.php
r48092 r48105 640 640 public function column_description( $theme ) { 641 641 global $status, $totals; 642 642 643 if ( $theme->errors() ) { 643 644 $pre = 'broken' === $status ? __( 'Broken Theme:' ) . ' ' : ''; … … 681 682 ); 682 683 } 684 683 685 /** 684 686 * Filters the array of row meta for each theme in the Multisite themes … … 687 689 * @since 3.1.0 688 690 * 689 * @param string[] $theme_meta An array of the theme's metadata, 690 * including the version, author, and 691 * theme URI. 691 * @param string[] $theme_meta An array of the theme's metadata, including 692 * the version, author, and theme URI. 692 693 * @param string $stylesheet Directory name of the theme. 693 694 * @param WP_Theme $theme WP_Theme object. … … 695 696 */ 696 697 $theme_meta = apply_filters( 'theme_row_meta', $theme_meta, $stylesheet, $theme, $status ); 698 697 699 echo implode( ' | ', $theme_meta ); 698 700 … … 769 771 * @since 5.5.0 770 772 * 771 * @param string $html The HTML for theme ’s auto-update setting including toggle auto-update action link772 * and time to next update.773 * @param string $html The HTML for theme's auto-update setting, including 774 * toggle auto-update action link and time to next update. 773 775 * @param string $stylesheet Directory name of the theme. 774 776 * @param WP_Theme $theme WP_Theme object.
Note: See TracChangeset
for help on using the changeset viewer.