如果要自动添加,wp_get_attachment_image_src()
可能对你有帮助。
在循环发生的文件中,可能是索引。php或其他什么,您可以执行以下操作:
$your_image = wp_get_attachment_image_src($postID, \'full\');
echo \'<img src="\'.$your_image[0].\'" \';
if(($your_image[1] >= 1000) && ($your_image[2] >= 1000)) { echo \'class="full"\'; }
else { echo \'class="not-full"; }
echo \' />\';
它将检查您的图像是否更宽且高于1000像素,如果是这样,请将类添加到其中。
可以改进,但应该给你一个关于你可以做什么的想法。