WP_List_Table::display_tablenav( string $which )
Generates the table navigation above or below the table
Parameters
- $which
-
(string) (Required)
More Information
This generates the table navigation above or below the table. Generally, you don’t need to call this explicitly as it is handled in the display() method.
Source
File: wp-admin/includes/class-wp-list-table.php
protected function display_tablenav( $which ) { if ( 'top' === $which ) { wp_nonce_field( 'bulk-' . $this->_args['plural'] ); } ?> <div class="tablenav <?php echo esc_attr( $which ); ?>"> <?php if ( $this->has_items() ) : ?> <div class="alignleft actions bulkactions"> <?php $this->bulk_actions( $which ); ?> </div> <?php endif; $this->extra_tablenav( $which ); $this->pagination( $which ); ?> <br class="clear" /> </div> <?php }
Changelog
Version | Description |
---|---|
3.1.0 | Introduced. |
© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_list_table/display_tablenav