I have a custom taxonomy: 'tipo_busco' with two values: 'girls' and 'boys'.
I have a template: taxonomy-tipo_busco.php
If I go to: www.mydomain.com/tipo_busco/girls it shows the posts with that taxonomy. Ok. But I cant paginate it.
Im using:
<?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', 'twentyten' ) ); ?>
<?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', 'twentyten' ) ); ?>
The link goes to: www.mydomain.com/tipo_busco/girls/page/2 and it shows a 404 error.
This is the queryposts:
<?php query_posts(array( 'post_type'=>'busco', 'showposts' => 1, 'paged' => $paged, 'tipo_busco'=>$term->slug)); ?>
If I set the "number of entries" to 1, it works, but if I set to 10, it shows the 404 error page... :(
How can I fix it ?
Thanks!
