WP_List_Table::get_pagenum(): int

Gets the current page number.


Return

int


Top ↑

Source

File: wp-admin/includes/class-wp-list-table.php. View all references

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 );
}


Top ↑

Changelog

Changelog
Version Description
3.1.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.