WP_Query pagination not working in admin area
Milo noted that there is no $wp_query object in wp-admin page, so we can get $paged via: $paged = ( $_GET[‘paged’] ) ? $_GET[‘paged’] : 1; Now that we have $paged, we can code our own pagination. I will demonstrate how in its very simplest form. First let’s get maximum pagination pages: $max_pages = $the_query->max_num_pages; … Read more