WP_Themes_List_Table::display()
Displays the themes table.
Overrides the parent display() method to provide a different container.
Метод класса: WP_Themes_List_Table{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$WP_Themes_List_Table = new WP_Themes_List_Table(); $WP_Themes_List_Table->display();
Список изменений
С версии 3.1.0 | Введена. |
Код WP_Themes_List_Table::display() WP Themes List Table::display 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 }