这就是我的function.php里面的内容
<?php
if ( function_exists( 'add_theme_support' )){
add_theme_support( 'post-thumbnails' );
}
if ( function_exists( 'add_image_size' )){
add_image_size('featured', 400, 340, true);
add_image_size('post-thumb', 100, 140, true);
}
?>
这就是我的 index.php 里面的内容
<?php the_post_thumbnail('post-thumb'); ?>
- 特色图片已
Screen Options
启用。 - 特色图像元框显示在
Edit Post
- 特色图片已设置。
问题是 index.php(主页)中未显示缩略图。我错过了什么吗?提前非常感谢。