wordpress - How to display from category 17 only one post? -
i have code trying display 1 post category 17. can't it. have idea? code below. have tried show post of category 17. want show 1 post cat 17.
<?php if(have_posts()):?> <?php while(have_posts()):?> <?php the_post();?> <?php $post = $wp_query->post; if ( in_category( '17' ) ) { ?> <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"> <div class="car_box shadow left"> <h1><?php the_title(); ?></h1> <!--<img src="images/car2.png" alt="premium cars" align="middle"/>--> <?php // post image. if ( has_post_thumbnail() ) { the_post_thumbnail(); } else { echo '<img src="' . get_bloginfo( 'stylesheet_directory' ) . '/images/thumbnail-default.jpg" />'; } ?> <p>bmw 7 series or simillar</p> <div class="desc left"> <div class="passenger left"> 4 </div> <div class="suitcase left"> 3 </div> <div class="doors left"> 5 </div> <div class="gear left"> auto </div> </div> <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" class="viewmore left">view more</a> </div> </a> <?php } ?> <?php endwhile;?> <?php endif;?>
add break; in loop after you've shown first found post, before close inner if statement.
Comments
Post a Comment