Answers:
请尝试以下方法。首先,将这段代码添加到模板中:
<?php $image_data = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), "thumbnail" ); ?>
$ image_data现在将返回一个包含url,width和height的数组(函数reference)。要获得宽度,您可以这样做:
<?php $image_width = $image_data[1]; ?>
在您的特定示例中,将上面的两段代码添加到模板后,您可以这样做:
<div style="width:<?php echo $image_width; ?>">
有帮助吗?