0
我正在循環提取後期圖像,每個圖像都會顯示新的寬度和高度。我在如何定義img標籤中的寬度和高度時遇到問題。我如何改變從wordpress中獲取帖子圖片的寬度和高度?
<?php
$image = wp_get_attachment_image_src(get_post_thumbnail_id(get_the_ID()),
'single-post-thumbnail');
?>
<img src="<?= $image[0]; ?>" alt="" width="" height="" />
除非你可以將其設置爲變量然後我建議不要打擾它。 –
看一看:http://codex.wordpress.org/Function_Reference/wp_get_attachment_image_src –