如何在wordpress中更改提取后期图像的宽度和高度?

时间:2013-03-29 12:15:34

标签: php html css wordpress

我正在循环中获取帖子图像,每个图像都会以新的宽度和高度显示。我在如何在img标签中定义宽度和高度时遇到问题。

<?php
 $image = wp_get_attachment_image_src(get_post_thumbnail_id(get_the_ID() ),
         'single-post-thumbnail'); 
?>
<img src="<?= $image[0]; ?>" alt="" width="" height="" />

1 个答案:

答案 0 :(得分:0)

array getimagesize(string $ filename [,array&amp; $ imageinfo])

来自http://php.net/manual/en/function.getimagesize.php

此外,来自http://codex.wordpress.org/Function_Reference/wp_get_attachment_image_src

<?php 
    $attachment_id = 8; // attachment ID
    $image_attributes = wp_get_attachment_image_src( $attachment_id ); // returns an array
?> 

<img src="<?php echo $image_attributes[0]; ?>" width="<?php echo $image_attributes[1]; ?>" height="<?php echo $image_attributes[2]; ?>">