WP_MS_Users_List_Table::pagination() WordPress Method

The WP_MS_Users_List_Table::pagination() method is used to generate pagination links for a list of Multisite users. This is useful for when you need to display a large number of users on a single page.

WP_MS_Users_List_Table::pagination( string $which ) #


Parameters

$which

(string)(Required)


Top ↑

Source

File: wp-admin/includes/class-wp-ms-users-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.