Rel "next" with Custom Post Type and WP_Query
-
Hi,
I’m using taxonomy.php template to display all the records of one of my custom post type taxonomy.
I’m using WP_Query to get all the records like this :$args = array( ‘post_type’ => ‘temoignage’, ‘post_status’ => ‘publish’, ‘posts_per_page’ => -1, ‘nopaging’ => true, ‘zonegeo’ => $taxo, ‘orderby’ => ‘date’, ‘order’ => ‘DESC’);
$myquery = new WP_Query( $args );
Even if the parameters : ‘posts_per_page’ => -1 and ‘nopaging’ => true
are used WordPress SEO generate a rel=”next” link.<link rel=”next” href=”https://www.mydonaim.com/customposttypeslug/page/2″ />
Any idea of the problem ?
Thanks
Nicolas
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Rel "next" with Custom Post Type and WP_Query’ is closed to new replies.