php - Get 2 posts per slide, Unslider, Wordpress -
i'm trying 2 posts per slide in wordpress theme. posts category "news" , want display 5 pages 2 posts. @ moment displays one.
this code i've got @ moment.
<div class="banner"> <ul> <?php $logo = new wp_query( array( 'category_name' => 'news', 'posts_per_page' => 10 ) ); ?> <?php while ($logo->have_posts()) : $logo->the_post(); ?> <?php $do_not_duplicate[] = $post->id; ?> <li class="news-item col-1-1 no-pad"> <div class="description"> <a href="<?php echo get_permalink(); ?>"><h4><?php the_title(); ?></h4></a> <p class="post-date">gepubliceerd op: <?php echo get_the_date('d-m-y'); ?></p> <p><?php content(160); ?></p> </div> <a class="button-med" href="<?php echo get_permalink(); ?>">lees meer</a> </li> <?php endwhile; wp_reset_postdata(); ?> </ul> </div>
Comments
Post a Comment