BBP_Topic_Replies_List_Table::display()
Display the list table
Description Description
This custom method is necessary because the one in WP_List_Table comes with a nonce and check that we do not need.
Source Source
File: includes/admin/classes/class-bbp-topic-replies-list-table.php
public function display() {
// Top
$this->display_tablenav( 'top' ); ?>
<table id="bbp-reply-list" class="wp-list-table <?php echo implode( ' ', $this->get_table_classes() ); ?>">
<thead>
<tr>
<?php $this->print_column_headers(); ?>
</tr>
</thead>
<tbody id="the-list" data-wp-lists='list:<?php echo $this->_args['singular']; ?>'>
<?php $this->display_rows_or_placeholder(); ?>
</tbody>
<tfoot>
<tr>
<?php $this->print_column_headers( false ); ?>
</tr>
</tfoot>
</table>
<?php
// Bottom
$this->display_tablenav( 'bottom' );
}
Changelog Changelog
| Version | Description |
|---|---|
| 2.6.0 | Introduced. |