WP_Themes_List_Table::display()
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() WP Themes List Table::display code WP 6.7.1
<?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 }