您可以尝试以下操作:
<!-- The Post Thumbnail function is active by default, but this line of php will make it display.-->
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" target="_blank"><?php if ( function_exists("has_post_thumbnail") && has_post_thumbnail() ) { the_post_thumbnail(array(150,150, false), array("class" => "alignleft post_thumbnail")); } ?></a>
<!--Post Thumbnail Ends-->
无论图像大小如何,此部分都将控制缩略图的大小:
the_post_thumbnail(array(150,150, false)
/* width, height, option to crop
Generally the default is set to true in order to crop the image*/
它被包装在锚定(链接)标签中,因此如果用户想要查看原始图像大小,他们所要做的就是单击它以放大并以全尺寸查看。
您还可以通过功能标准化您的特色图像大小。php文件。只需将此添加到您的函数中。php:
add_theme_support(\'post-thumbnails\');
// If not the standard size, state your size too
set_post_thumbnail_size( 150, 150, false );
这将标准化特征图像缩略图的大小,而不是将大小属性放入主题模板文件中。