高级自定义字段wordpress图像大小

时间:2013-09-30 08:51:54

标签: wordpress advanced-custom-fields

我正在创建一个带旋转木马的网站。要加载图像,我在Wordpress上使用高级自定义字段。

这是我的代码:

<?php $images = get_field('slides', $post->ID);
// clean_print_r($images);
if (!empty($images)) :
?>
<div class="wide-container">
    <div id="slides">
        <ul class="slides-container">
        <?php for($i = 0; $i < count($images); $i++): ?>
        <!-- slides -->
            <li>
                <img src="<?php echo $images[$i]['img_slide']['sizes']['large'] ?>" alt="" />
            </li>
        <?php endfor; ?>
        </ul>
    </div>
</div>
<?php endif; ?>

我可以加载图片,但它们的大小为1024px宽:

<img src="http://example.com/wp-content/uploads/2013/09/bg_header03-1024x341.jpg" ... />

有没有办法获得全尺寸图片?我试图替换:

['img_slide']['sizes']['large']

['img_slide']['sizes']['full']

但这不起作用,也没有加载图像。 在ACF中,我通过ID调用图像附件,它是一个转发器字段。

2 个答案:

答案 0 :(得分:1)

我之前的回答是关于返回:图像ID,由线程启动器指定,但现在我意识到他实际上是在谈论return:object。

/*
*  Return value = Object
*  requires ACF 3.3.7+
*/

$image = get_field('image');

var_dump($image);

/*

Data returned will look like this:

Array
(
    [id] => 540
    [alt] => A Movie
    [title] => Movie Poster: UP
    [caption] => sweet image
    [description] => a man and a baloon
    [url] => http://localhost:8888/acf/wp-content/uploads/2012/05/up.jpg
    [sizes] => Array
        (
            [thumbnail] => http://localhost:8888/acf/wp-content/uploads/2012/05/up-150x150.jpg
            [medium] => http://localhost:8888/acf/wp-content/uploads/2012/05/up-300x119.jpg
            [large] => http://localhost:8888/acf/wp-content/uploads/2012/05/up.jpg
            [post-thumbnail] => http://localhost:8888/acf/wp-content/uploads/2012/05/up.jpg
            [large-feature] => http://localhost:8888/acf/wp-content/uploads/2012/05/up.jpg
            [small-feature] => http://localhost:8888/acf/wp-content/uploads/2012/05/up-500x199.jpg
        )

)

*/

来源:http://www.advancedcustomfields.com/resources/field-types/image/

显然原始图像不是大小而是URL,因此改变:

['img_slide']['sizes']['large']

['img_slide']['url']

你应该没问题

答案 1 :(得分:0)

我不确定如何使用返回ID,但如果您返回网址,则会获得完整的图片。

编辑: 好吧我用图像ID做了一些测试,看起来你已经混淆了你的数组处理。这适用于单个图像:虽然应该很容易适应您的转发器。

$attachment_id = get_field('slide');
$size = "full";


$image = wp_get_attachment_image_src( $attachment_id, $size );
echo '<img src="' . $image[0] . '">';   

//OR

$image = wp_get_attachment_image( $attachment_id, $size );
echo $image[0];