Pagination is not working on taxonomy.php. Here is my code for register custom post type and taxonomy
add_action(\'init\', \'ep_add_equipment\');
function ep_add
// get the global query object
global $wp_query;
// get the correct page var
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
// create the page argument
$args= array('paged'=> $paged);
// merge the page argument array with the original query array
$args = array_merge( $wp_query->query, array( 'post_type' => 'equipment' ) );
// Re-run the query with the new arguments
query_posts( $args );