You appear to be a bot. Output may be restricted
Description
Generate the table navigation above or below the table
Usage
BW_List_Table::display_tablenav( $which );
Parameters
- $which
- ( string ) required –
Returns
voidSource
File name: oik/admin/class-bw-list-table.phpLines:
1 to 18 of 18
protected function display_tablenav( $which ) { if ( 'top' == $which ) wp_nonce_field( 'bulk-' . $this->_args['plural'] ); ?> <div class="tablenav <?php echo esc_attr( $which ); ?>"> <div class="alignleft actions bulkactions"> <?php $this->bulk_actions( $which ); ?> </div> <?php $this->extra_tablenav( $which ); $this->pagination( $which ); ?> <br class="clear" /> </div> <?php }View on GitHub View on Trac