在下面的脚本中,我需要获取“数据响应”属性中“中等”大小图像的URL路径。它当前返回缩略图大小。
the_post_thumbnail("thumbnail",
array(
\'itemprop\' => \'image\',
\'class\' => \'alignleft\',
\'style\' => \'margin:5px 15px 10px 0;\',
\'data-responsive\' => wp_get_attachment_thumb_url(get_post_thumbnail_id($post->ID),\'medium\')
)
);
我希望缩略图用作默认图像,但是,我需要将URL写入中等大小的图像,以便在媒体查询中使用该URL将图像交换到更大设备上的更高分辨率。