WP_Themes_List_Table::tablenav

Advertisement

Syntax Syntax

WP_Themes_List_Table::tablenav( string $which = 'top' )

Parameters Parameters

$which

(Optional)

Default value: 'top'

Source Source

File: wp-admin/includes/class-wp-themes-list-table.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
	}

Advertisement

Advertisement

Leave a Reply