WP_Themes_List_Table::tablenav()publicWP 1.0

Метод класса: WP_Themes_List_Table{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$WP_Themes_List_Table = new WP_Themes_List_Table();
$WP_Themes_List_Table->tablenav( $which );
$which(строка)
-
По умолчанию: 'top'

Код WP_Themes_List_Table::tablenav() 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
}