WP_Themes_List_Table::tablenav()
Method of the class: WP_Themes_List_Table{}
No Hooks.
Return
null
. Nothing (null).
Usage
$WP_Themes_List_Table = new WP_Themes_List_Table(); $WP_Themes_List_Table->tablenav( $which );
- $which(string)
- -
Default: 'top'
WP_Themes_List_Table::tablenav() WP Themes List Table::tablenav code WP 6.6.2
<?php public function tablenav( $which = 'top' ) { if ( $this->get_pagination_arg( 'total_pages' ) <= 1 ) { return; } ?> <div class="tablenav themes <?php echo $which; ?>"> <?php $this->pagination( $which ); ?> <span class="spinner"></span> <br class="clear" /> </div> <?php }