WP_List_Table::get_pagenum
Gets the current page number.
Method of the class: WP_List_Table{}
No Hooks.
Returns
Int. Current page number.
Usage
$WP_List_Table = new WP_List_Table(); $WP_List_Table->get_pagenum();
Changelog
| Since 3.1.0 | Introduced. |
WP_List_Table::get_pagenum() WP List Table::get pagenum code WP 7.0
public function get_pagenum() {
$pagenum = isset( $_REQUEST['paged'] ) ? absint( $_REQUEST['paged'] ) : 0;
if ( isset( $this->_pagination_args['total_pages'] ) && $pagenum > $this->_pagination_args['total_pages'] ) {
$pagenum = $this->_pagination_args['total_pages'];
}
return max( 1, $pagenum );
}