WP_MS_Sites_List_Table::pagination()protectedWP 1.0

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

Хуков нет.

Возвращает

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

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

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->pagination( $which );
$which(строка) (обязательный)
The location of the pagination nav markup: 'top' or 'bottom'.

Заметки

  • Global. Строка. $mode List table view mode.

Код WP_MS_Sites_List_Table::pagination() WP 6.4.3

protected function pagination( $which ) {
	global $mode;

	parent::pagination( $which );

	if ( 'top' === $which ) {
		$this->view_switcher( $mode );
	}
}