你好吗?
我有页面attachment.php,我想显示附件,但是要显示所有几种尺寸的图片。
例如:cat.jpg,这张图片有几种尺寸(cat-180X180.jpg,cat-20X20.jpg,cat-60X60.jpg,cat.jpg)。
当我访问(http://mysite.com/?attachment_id=771)时,该页面会将所有尺寸的附件拆分。
我希望你能理解我,因为我的语言很棒......
答案 0 :(得分:2)
我想我明白了,在你的attachement.php文件中,你可以使用wp_get_attachment_image_src()来恢复所有不同的大小:
<?php $size_one = wp_get_attachment_image_src( $attachment_id, 'size_one' );
$size_two = wp_get_attachment_image_src( $attachment_id, 'size_two' );
$size_three = wp_get_attachment_image_src( $attachment_id, 'size_three' ); ?>
这假设您已使用add_image_size()来添加图像大小?
http://codex.wordpress.org/Function_Reference/wp_get_attachment_image_src http://codex.wordpress.org/Function_Reference/add_image_size