如何在WordPress中仅显示帖子的缩略图和标题?

时间:2012-02-04 12:55:46

标签: wordpress themes thumbnails title

如何在WordPress中仅显示帖子的缩略图和标题,如下所示:http://themes.premiumpixels.com/?theme=artiste

P.S。我没有做任何广告,我刚发布了一个问题,因为我不知道如何做这样的事情。

2 个答案:

答案 0 :(得分: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; ?>

答案 1 :(得分:0)

您需要为图片执行此操作:

http://www.wpbeginner.com/wp-themes/how-to-add-post-thumbnails-in-wordpress/

你需要为小文本做这个:

在function.php中添加:

  add_post_type_support( 'page', 'excerpt' );

然后在链接演示您的模板中的post_thumbnail下方添加:

    <?php  the_exceprt(); ?>