0

我有一个while循环,它获取一个缩略图,然后是一个div中的所有其他图像,用于fancybox。我需要它,以便当单击拇指时,它会在图像的转发器字段中展开第一个图像,而不是初始缩略图。

我试图将图像取出并回显,但它似乎得到了随机图像。

这是我的代码 firstImage 变量是我用来尝试从转发器字段中获取第一张图像的地方。

这是网站的链接http://lsmcreative.co.nz/

    <?php query_posts("posts_per_page=-1"); ?>
    <?php if(have_posts()):?>
    <?php $i = 0; ?>
    <?php while(have_posts()) : the_post();?> 

        <?php
        $image1ID = get_field('main');
        $image1 = wp_get_attachment_image_src( $image1ID, 'full-size' );
        $attachment1 = get_post( $image1ID );
        $image1_title = $attachment1->post_title;

        $categories = get_the_category(); 
        $i++;

        $firstImage = get_field('images');
        $firstImageId = $firstImage[0]['image' ]['id' ];
        $imageobject = wp_get_attachment_image_src( $firstImageId, 'full-size'  ); // returns an array
        $image_url = $imageobject[0];           
        ?>                          

            <li class="<?php foreach($categories as $category){ echo $category->category_nicename.' '; } ?>">

                <a class="grouped_elements" rel="group<?php echo $i; ?>" title="<?php echo $image_title; ?>" href="<?php echo $imageobject[0] ?>">
                    <img class="hover" src="<?php bloginfo('template_url') ?>/img/portfolio/hover.jpg" alt="LSM Design">
                    <img src="<?php echo $image1[0] ?>" alt="<?php echo $image1_title; ?>">
                </a>

                <div class="lb-images">

                    <?php if(get_field('images')){ ?>   
                        <?php while(has_sub_field('images')): ?>
                            <?php
                            $imageID = get_sub_field('image');
                            $image = wp_get_attachment_image_src( $imageID, 'gallery-thumb' );
                            $attachment = get_post( $imageID );
                            $image_title = $attachment->post_title;
                        ?>
                        <a class="grouped_elements" rel="group<?php echo $i; ?>"  href="<?php echo $image[0] ?>" title="<?php if(get_sub_field('caption')){the_sub_field('caption');}; ?>"><img src="<?php echo $image[0] ?>" alt="<?php echo $image_title; ?>"></a>
                        <?php endwhile; ?>
                    <?php } ?>  

                </div>

            </li>

    <?php endwhile; ?>
    <?php else: ?>  
    <?php endif; ?>
    <?php wp_reset_query(); ?>  
4

1 回答 1

0

好的,试试这个可能会起作用,因为你的第一篇文章给你链接可能是由于 get_posts 更改了你的代码

$firstImage = get_field('images');

作为

$imid=get_the_ID();
$firstImage = get_field('images',$imid);

希望这会成功.. :)

于 2013-03-20T09:34:39.343 回答