你能从你的循环中添加一些代码吗。php文件?显示特色图像所需的代码是:
<?php the_post_thumbnail( \'medium\' );?>
如果要显示中等大小的图片,请使用
thumbnail
,
large
或者只是
\'\'
(原始尺寸)以显示其他尺寸。
可以肯定的是,您是否为每篇文章选择了缩略图?This is not done automatically, 如果在post editor中看不到此选项,则需要在函数中激活此功能。php文件如下:
if ( function_exists( \'add_theme_support\' ) ) {
add_theme_support( \'post-thumbnails\' );
}