示例 PHP 代码:
<?php
$image_attributes = wp_get_attachment_image_src( '8' );
?>
<img src="<?php echo $image_attributes[0]; ?>" width="<?php echo $image_attributes[1]; ?>" height="<?php echo $image_attributes[2]; ?>">
现在,可以说,我根本不想使用该$image_attributes
变量,而是直接使用wp_get_attachment_image_src( '8' );
而不是$image_attributes[0];
,$image_attributes[1];
然后$image_attributes[2];
使用 img 标签。
在这种情况下,我应该如何修改代码?
为什么?
让我通过例子来解释(我的真实用例)。
<?php
$attachment_attributes = wp_get_attachment_image_src( '8' ); // returns an array
?>
<media:content url="<?php echo $attachment_attributes[0]; ?>" width="<?php echo $attachment_attributes[1]; ?>" height="<?php echo $attachment_attributes[2]; ?>" type="image/jpeg">
我该如何做同样的事情,就像我这样编码时一样?
foreach ( $attachments as $att_id => $attachment ) {
$attachment_attributes = wp_get_attachment_image_src( '8' );
// Should it be done like this? If not, how do I do it?
$output .= '<media:content height="' . $attachment_attributes[0]; . '" type="image/jpeg">';
if ( $captiontag && trim($attachment->post_excerpt) ) {
$output .= "
<{$captiontag}>" . wptexturize($attachment->post_excerpt) . "</{$captiontag}>";
}
$output .= '
</media:content>';
}