WP_Themes_List_Table::tablenav() –
You appear to be a bot. Output may be restricted
Description
Usage
WP_Themes_List_Table::tablenav( $which );
Parameters
- $which
- ( string ) optional default: top –
Returns
void
Source
File name: wordpress/wp-admin/includes/class-wp-themes-list-table.php
Lines:
1 to 12 of 12
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 }