Urgent! Only ten CPT are displaying when I need ALL!
-
Hey guys, I hope someone can help with this because I’m trying to relaunch the website soon.
If you look at this page you can see that I have used Custom Post Types to create band profiles, and there’s an ‘archive’ sort of page to overview them here: https://new.doubledance.ca/bands/profile/
On that page it only shows TEN posts (profiles), when there’s actually 12 in the database. The code I am using to call the archive/overview page is the following:
<div class="post-content profiles" id="profiles-bands" style="width:990px;">
<!-- Profiles: Bands -->
<?php $loop = new WP_Query( array( 'post_type' => 'doubledance_bands' ) ); while ( $loop->have_posts() ) : $loop->the_post(); ?>
">
<?php get_the_image( array( 'size' => 'large', 'width' => '320', 'height' => '213', 'image_scan' => true, 'link_to_post' => false ) ); ?>
<span><?php the_title(); ?></span>
<?php endwhile; ?>
Is there something wrong in my code that would make the page only output 10 of the 12 posts? Can someone help with this so I can display them ALL?Cheers
- The topic ‘Urgent! Only ten CPT are displaying when I need ALL!’ is closed to new replies.