My custom pagination not displaying

You will pass the $wpex_query object into wpex_pagination function. Currently $wp_query object is not getting your custom query details. Here is the updated for wpex_pagination function. if ( !function_exists( ‘wpex_pagination’ ) ) { function wpex_pagination( $new_query ) { $prev_arrow = is_rtl() ? ‘→’ : ‘←’; $next_arrow = is_rtl() ? ‘←’ : ‘→’; global $wp_query; $temp_query … Read more