2

我是 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; ?>
4

1 回答 1

0

将此代码放在您希望它出现的循环中。

<?php if(has_post_thumbnail()) { the_post_thumbnail(); }?>

文档中:

显示当前帖子的特色图片(以前称为帖子缩略图),如该帖子的编辑屏幕中设置的那样。

该标签必须在 The Loop 中使用。使用 get_the_post_thumbnail($id, $size, $attr) 来获取任何帖子的特色图片。

要启用帖子缩略图,当前主题必须包含 add_theme_support( 'post-thumbnails' ); 在其functions.php文件中。另请参阅发布缩略图。

于 2013-01-22T16:23:15.373 回答