Pagination not Working With Permalinks – Solution
Finally got the solution for “Pagination not Working With Permalinks”, this issue is coming because you are using the same name(slug) for page and custom post type. First, you need to rename the page or custom post type slug. Use different slug for page and custom post type. After that also you are facing the same problem with pagination, please use following code. Add this code to your theme function.php file.
// pagination not working with permalinks add_filter( 'redirect_canonical', 'custom_disable_redirect_canonical' ); function custom_disable_redirect_canonical( $redirect_url ) { if ( is_paged() && is_singular() ) $redirect_url = false; return $redirect_url; }