我是Wordpress的新手,并且在档案页面上使用模板BlankSlate广告我想要显示插入到帖子中的图像的缩略图,我该怎么做?这是我的archives.php代码。
提前致谢!
<?php the_post(); ?>
<?php if ( is_day() ) : ?>
<h1 class="page-title"><?php printf( __( 'Daily Archives: %s', 'blankslate' ), '<span>' . get_the_time(get_option('date_format')) . '</span>' ) ?></h1>
<?php elseif ( is_month() ) : ?>
<h1 class="page-title"><?php printf( __( 'Monthly Archives: %s', 'blankslate' ), '<span>' . get_the_time('F Y') . '</span>' ) ?></h1>
<?php elseif ( is_year() ) : ?>
<h1 class="page-title"><?php printf( __( 'Yearly Archives: %s', 'blankslate' ), '<span>' . get_the_time('Y') . '</span>' ) ?></h1>
<?php elseif ( isset($_GET['paged']) && !empty($_GET['paged']) ) : ?>
<h1 class="page-title"><?php _e('Blog Archives', 'blankslate' ); ?></h1>
<?php endif; ?>
<?php rewind_posts(); ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'entry' ); ?>
<?php endwhile; ?>
答案 0 :(得分:0)
将此代码放在您希望它出现的循环中。
<?php if(has_post_thumbnail()) { the_post_thumbnail(); }?>
显示特色图片(以前称为Post Thumbnails) 当前帖子,在该帖子的编辑屏幕中设置。
此标记必须在The Loop中使用。使用get_the_post_thumbnail($ id, $ size,$ attr)而不是为任何帖子获取精选图片。
要启用帖子缩略图,当前主题必须包括 add_theme_support('post-thumbnails');在其functions.php文件中。看到 也发布缩略图。