/**
* Displays the themes table.
*
* Overrides the parent display() method to provide a different container.
*
* @since 3.1.0
*/
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
} /**
* @return string[] Array of column titles keyed by their column name.
*/