WordPress的默认图像大小为“缩略图”、“中”、“大”和“全”(上载图像的大小)。这些图像大小可以在WordPress管理媒体面板的设置>媒体下进行配置。这是如何将这些默认大小与\\u post\\u缩略图()一起使用的:
the_post_thumbnail(); // without parameter -> \'post-thumbnail\'
the_post_thumbnail( \'thumbnail\' ); // Thumbnail (default 150px x 150px max)
the_post_thumbnail( \'medium\' ); // Medium resolution (default 300px x 300px max)
the_post_thumbnail( \'large\' ); // Large resolution (default 640px x 640px max)
the_post_thumbnail( \'full\' ); // Full resolution (original size uploaded)
the_post_thumbnail( array(100, 100) ); // Other resolutions
有关更多信息,请参阅
https://developer.wordpress.org/reference/functions/the_post_thumbnail/