WP_Themes_List_Table::tablenav()publicWP 1.0

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() code WP 6.5.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
}