WP_MS_Sites_List_Table::pagination() WordPress Method

The pagination method of the WP_MS_Sites_List_Table class is used to generate the pagination links for the site list table.

WP_MS_Sites_List_Table::pagination( string $which ) #


Parameters

$which

(string)(Required)The location of the pagination nav markup: 'top' or 'bottom'.


Top ↑

Source

File: wp-admin/includes/class-wp-ms-sites-list-table.php

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

		parent::pagination( $which );

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

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.