display_themes()
Display theme content based on theme list.
Description Description
Source Source
File: wp-admin/includes/theme-install.php
217 218 219 220 221 222 223 224 225 226 | function display_themes() { global $wp_list_table ; if ( ! isset( $wp_list_table ) ) { $wp_list_table = _get_list_table( 'WP_Theme_Install_List_Table' ); } $wp_list_table ->prepare_items(); $wp_list_table ->display(); } |
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
2.8.0 | Introduced. |