WP_Themes_List_Table::display

Advertisement

Summery Summery

Displays the themes table.

Syntax Syntax

WP_Themes_List_Table::display()

Description Description

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

Source Source

File: wp-admin/includes/class-wp-themes-list-table.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
	}

Advertisement

Changelog Changelog

Changelog
Version Description
3.1.0 Introduced.

Advertisement

Leave a Reply