WP_MS_Users_List_Table::pagination()protectedWP 1.0

Method of the class: WP_MS_Users_List_Table{}

No Hooks.

Return

null. Nothing (null).

Usage

// protected - for code of main (parent) or child class
$result = $this->pagination( $which );
$which(string) (required)
-

Notes

  • Global. String. $mode List table view mode.

WP_MS_Users_List_Table::pagination() code WP 6.5.2

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

	parent::pagination( $which );

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