You appear to be a bot. Output may be restricted
Description
Get the current page number
Usage
$int = BW_List_Table::get_pagenum();
Parameters
Returns
intSource
File name: oik/admin/class-bw-list-table.phpLines:
1 to 8 of 8
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 ); }View on GitHub View on Trac