- Timestamp:
- 09/19/2022 09:06:08 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-ms-themes-list-table.php
r51795 r54215 445 445 446 446 if ( 'search' !== $type ) { 447 $status_links[ $type ] = sprintf( 448 "<a href='%s'%s>%s</a>", 449 esc_url( add_query_arg( 'theme_status', $type, $url ) ), 450 ( $type === $status ) ? ' class="current" aria-current="page"' : '', 451 sprintf( $text, number_format_i18n( $count ) ) 447 $status_links[ $type ] = array( 448 'url' => esc_url( add_query_arg( 'theme_status', $type, $url ) ), 449 'label' => sprintf( $text, number_format_i18n( $count ) ), 450 'current' => $type === $status, 452 451 ); 453 452 } 454 453 } 455 454 456 return $ status_links;455 return $this->get_views_links( $status_links ); 457 456 } 458 457
Note: See TracChangeset
for help on using the changeset viewer.