php - repeated loop in wordpress blog page how to solve this? -
how list 10 post in 1 page , solve pagination, found repeated loop in this.
i want apply css in comment . how can separate comments each part , can give individual css?
<?php query_posts('post_type=post&post_status=publish&posts_per_page=10&paged='. get_query_var('paged')); ?> <?php if( have_posts() ): ?> <?php while( have_posts() ): the_post(); ?> <div id="post-<?php get_the_id(); ?>" <?php post_class(); ?>> <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail( array(200,220),'thumbnail', array( 'class' => 'alignleft' ) ); ?></a> <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <span class="meta"><?php //author_profile_avatar_link(48); ?> <strong><?php the_time('f js, y'); ?></strong> / <strong><?php the_author_link(); ?></strong> / <span class="comments"><?php comments_popup_link(__('0 comments','twentythirteen'),__('1 comment','twentythirteen'),__('% comments','twentythirteen')); ?></span></span> <?php the_excerpt(__('continue reading »','twentythirteen')); ?> </div><!-- /#post-<?php get_the_id(); ?> --> <?php endwhile; ?> <div class="navigation"> <span class="newer"><?php previous_posts_link(__('« newer','twentythirteen')) ?></span> <span class="older"><?php next_posts_link(__('older »','twentythirteen')) ?></span> </div><!-- /.navigation --> <?php else: ?> <div id="post-404" class="noposts"> <p><?php _e('none found.','twentythirteen'); ?></p> </div><!-- /#post-404 --> <?php endif; wp_reset_query(); ?> </div><!-- /#content -->
Comments
Post a Comment