【发布时间】:2012-02-26 19:15:12
【问题描述】:
如何在 WordPress 中仅显示帖子的缩略图和标题,如下所示:http://themes.premiumpixels.com/?theme=artiste
附:我没有做任何广告,我只是发布了一个问题,因为我不知道如何做这样的事情。
【问题讨论】:
标签: wordpress themes thumbnails title
如何在 WordPress 中仅显示帖子的缩略图和标题,如下所示:http://themes.premiumpixels.com/?theme=artiste
附:我没有做任何广告,我只是发布了一个问题,因为我不知道如何做这样的事情。
【问题讨论】:
标签: wordpress themes thumbnails title
// 从你的循环中删除 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; ?>
【讨论】:
您需要为图像执行此操作:
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(); ?>
【讨论】: