我有这个页面:
每篇文章都必须出现时间。在第一页上s ok.From page 2 onwards don
显示文章数据。
代码PHP:
<?php while ( have_posts() ) : the_post(); ?>
<?php if( $wp_query->current_post == 0 ){ ?>
<li class="block first-post">
<a href="<?php the_permalink(); ?>" class="fancybox-iframe"><?php the_post_thumbnail('vantage-grid-loop'); ?></a>
<h3><a href="<?php the_permalink(); ?>" class="fancybox-iframe"><?php the_title(); ?></a></h3><br>
<p class="italic"><?php the_date(); ?></p>
<p><?php echo substr(get_the_content(),0,600).'...'; ?></p>
</li>
<?php } else if( $wp_query->current_post > 0 && $wp_query->current_post < 5 ) { ?>
<li class="block">
<a href="<?php the_permalink(); ?>" class="fancybox-iframe"><?php the_post_thumbnail('blog'); ?></a>
<h3><a href="<?php the_permalink(); ?>" class="fancybox-iframe"><?php echo substr(get_the_title(),0,20).'...'; ?></a></h3><br>
<p class="italic"> <?php the_date(); ?></p>
<p><?php echo substr(get_the_content(),0,70).'...'; ?></p>
</li>
<?php } else { ?>
<li class="block">
<a href="<?php the_permalink(); ?>" class="fancybox-iframe"><?php the_post_thumbnail('blog'); ?></a>
<h3><a href="<?php the_permalink(); ?>" class="fancybox-iframe"><?php the_title(); ?></a></h3><br>
//is displayed here date
<p class="italic"><?php the_date(); ?></p>
<p><?php echo substr(get_the_content(),0,600).'...'; ?></p>
</li>
<?php } ?>
<?php //get_template_part( 'content', get_post_format() ); ?>
<?php endwhile; ?>
CODE CSS:
.italic{font-style:italic;cursor:pointer;}
我放了一张图片,看看代码是如何在首页上,它在第二页上。 http://i60.tinypic.com/2dcd6rt.jpg
你可以帮我解决这个问题吗?
提前致谢!