Dispal Posts after the first 12
-
Hi All,
I have an unusual one here. I wish to use this plugin to load more posts after the first 12. To give you some idea here is my very custom loop.php page…
<div id="column_01"> <!-- First Loop: Display post 1 --> <?php query_posts('showposts=2'); ?> <?php $posts = get_posts('numberposts=2&offset=0'); foreach ($posts as $post) : start_wp(); ?> <?php static $count1 = 0; if ($count1 == "2") {break;} else { ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <a href="<?php the_permalink(); ?>"> <div class="the-title"> <h2> <?php the_title(); ?> </h2> </div> <div class="img-container"> <figure> <!-- The Post Thumbnail --> <?php if(has_post_thumbnail()) : ?> <?php the_post_thumbnail('bloglanding-post-thumbnail'); ?> <?php endif; ?> </figure> </div> </a> <div class="socialWarf"><?php social_warfare(); ?></div> </article> <?php $count1++; } ?> <?php endforeach; ?> </div>
After this first Column I have a further 3 more showing the latest 12 posts. After that I want to rest using this plugin. The repeater template I tries to use this this…..
<?php query_posts('showposts=6'); ?> <?php $posts = get_posts('numberposts=6&offset=12'); foreach ($posts as $post) : start_wp(); ?> <?php static $count5 = 0; if ($count5 == "6") {break;} else { ?> <article id="post-mainblock" <?php post_class(); ?>> <a href="<?php the_permalink(); ?>"> <div class="the-title"> <h2> <?php the_title(); ?> </h2> </div> <div class="img-container"> <figure> <!-- The Post Thumbnail --> <?php if(has_post_thumbnail()) : ?> <?php the_post_thumbnail('bloglanding-post-thumbnail'); ?> <?php endif; ?> </figure> </div> </a> </article> <?php $count5++; } ?> <?php endforeach; ?>
As you can see from the page it is showing a lot more than the first 6 posts it should be showing. Remember the are 4 columns showing the latest 12 and at the time of writing this there are 18 test posts published starting with the usual Hello World post.
I hope all this makes sense!
Many thanks,Phillip Dews
The page I need help with: [log in to see the link]
- The topic ‘Dispal Posts after the first 12’ is closed to new replies.