Wordpress:获取附加图像并在帖子中显示它们

时间:2012-09-06 11:12:03

标签: php wordpress

我想在帖子中显示附加图片.. 就像

<a href"LINK TO FULL SIZE IMAGE"><img src"LINK TO THUMB"></img></a>

我从codex.wordpress获得以下内容但是如何告诉代码使用<href的大图片链接和<img的缩略图链接

<?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]; ?>">

1 个答案:

答案 0 :(得分:1)

您可以使用wp_get_attachment_link代替wp_get_attachment_image_src

echo wp_get_attachment_link($attachment_id, 'large');