diff --git wp-admin/includes/class-wp-ms-themes-list-table.php wp-admin/includes/class-wp-ms-themes-list-table.php
index 0f3865a..ad1fea1 100644
|
|
|
class WP_MS_Themes_List_Table extends WP_List_Table { |
| 573 | 573 | __( 'Visit Theme Site' ) |
| 574 | 574 | ); |
| 575 | 575 | } |
| | 576 | |
| | 577 | if ( $theme->parent() ) { |
| | 578 | $theme_meta[] = sprintf( __( 'Child theme of %s' ), '<strong>' . $theme->parent()->display( 'Name' ) . '</strong>' ); |
| | 579 | } |
| | 580 | |
| 576 | 581 | /** |
| 577 | 582 | * Filters the array of row meta for each theme in the Multisite themes |
| 578 | 583 | * list table. |