3 kollommen categorien inladen
-
<div id="wonen"> <?php $id = get_cat_id('wonen'); $q = "cat=" . $id; query_posts($q); if (have_posts()) : while (have_posts()) : the_post(); ?> <div style="background-color:#fff; float:left; width:26%; height:235px; padding: 10px; margin: 10px; border: 1px solid grey;"> <h3><a href="' the_title(); '"><?php the_title(); ?></a></h3> <?php the_excerpt(); ?> </div> <?php endwhile; ?> <?php endif; ?> </div> <!-- 3kollommen tuin --> <div id="tuin"> <?php $id = get_cat_id('tuin'); $q = "cat=" . $id; query_posts($q); if (have_posts()) : while (have_posts()) : the_post(); ?> <div style="background-color:#fff; float:left; width:26%; height:235px; padding: 10px; margin: 10px; border: 1px solid grey;"> <h3><a href="' the_title(); '"><?php the_title(); ?></a></h3> <?php the_excerpt(); ?> </div> <?php endwhile; ?> <?php endif; ?> </div> </div>
Page link: http://www.indipenda.com/?page_id=22
Hier kun je zien dat bij de categorie “tuin” 4 post worden ingeladen. En ik wil dat ze per Categorie maar 3 posts tonen.
Nu worden namelijk alle berichten ingeladen. “showpost=3”
- Het onderwerp ‘3 kollommen categorien inladen’ is gesloten voor nieuwe reacties.