WP_Plugin_Install_List_Table::display_tablenav() WordPress Method
The WP_Plugin_Install_List_Table::display_tablenav() method is used to display the table navigation for the plugin install table. This includes the bulk actions dropdown and the pagination controls.
WP_Plugin_Install_List_Table::display_tablenav( string $which ) #
Parameters
- $which
(string)(Required)
Source
File: wp-admin/includes/class-wp-plugin-install-list-table.php
protected function display_tablenav( $which ) { if ( 'featured' === $GLOBALS['tab'] ) { return; } if ( 'top' === $which ) { wp_referer_field(); ?> <div class="tablenav top"> <div class="alignleft actions"> <?php /** * Fires before the Plugin Install table header pagination is displayed. * * @since 2.7.0 */ do_action( 'install_plugins_table_header' ); ?> </div> <?php $this->pagination( $which ); ?> <br class="clear" /> </div> <?php } else { ?> <div class="tablenav bottom"> <?php $this->pagination( $which ); ?> <br class="clear" /> </div> <?php } }
Expand full source codeCollapse full source codeView on TracView on GitHub