WP_Themes_List_Table::display()

In this article

Displays the themes table.

Description

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

Source

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
}

Changelog

VersionDescription
3.1.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.