WP_Themes_List_Table::display()publicWP 3.1.0

Displays the themes table.

Overrides the parent display() method to provide a different container.

Method of the class: WP_Themes_List_Table{}

No Hooks.

Return

null. Nothing (null).

Usage

$WP_Themes_List_Table = new WP_Themes_List_Table();
$WP_Themes_List_Table->display();

Changelog

Since 3.1.0 Introduced.

WP_Themes_List_Table::display() code WP 6.5.2

<?php
public function display() {
	wp_nonce_field( 'fetch-list-' . get_class( $this ), '_ajax_fetch_list_nonce' );
	?>
	<?php $this->tablenav( 'top' ); ?>

	<div id="availablethemes">
		<?php $this->display_rows_or_placeholder(); ?>
	</div>

	<?php $this->tablenav( 'bottom' ); ?>
	<?php
}