WP_MS_Sites_List_Table::pagination
Displays the pagination.
Method of the class: WP_MS_Sites_List_Table{}
No Hooks.
Returns
null. Nothing (null).
Usage
// protected - for code of main (parent) or child class $result = $this->pagination( $which );
- $which(string) (required)
- The location of the pagination nav markup: Either
'top'or'bottom'.
Notes
- Global. String.
$modeList table view mode.
Changelog
| Since 3.1.0 | Introduced. |
WP_MS_Sites_List_Table::pagination() WP MS Sites List Table::pagination code WP 7.0
protected function pagination( $which ) {
global $mode;
parent::pagination( $which );
if ( 'top' === $which ) {
$this->view_switcher( $mode );
}
}