2012-02-04 64 views

回答

2

//从你的循环只是删除the_content()或the_excerpt()调用

<?php if (have_posts()) : ?> 
       <?php while (have_posts()) : the_post(); ?>  
       <!-- do stuff ... --> 
       if (has_post_thumbnail()) { // check if the post has a Post Thumbnail assigned to it. 
        the_post_thumbnail(); 
       } 
       post_title();// to display the post title 
       <?php endwhile; ?> 
<?php endif; ?> 
+0

不认为是什么他问。 – 2012-02-05 01:21:51

+0

没有他只是想显示帖子缩略图和标题...如果我没有错你所提供的sol会显示文本摘录形式的帖子(我认为这将是40个字符的默认) – tinyhook 2012-02-05 18:42:00

+0

我可能是错误的,但根据那链接不只是一个标题,但一些额外的小信息连同它 – 2012-02-05 19:29:16

相关问题