1

チャンネル画像フィールドである「member_gallery」という動物園訪問者フィールドがあります。画像を表示するたびに、それぞれに 4 つの画像が作成されます。ただし、それぞれに4つの画像を出力したくありません。それぞれに1つの画像を出力したい。ここに私が書いたコードがあります:

{visitor:member_gallery}
   {exp:channel_images:images entry_id="{entry_id}"}                        
       <img src="{image:url:large}" alt="{image:title}" />
   {/exp:channel_images:images}
{/visitor:member_gallery}

これが吐き出すマークアップです

<img src="http://staging.eventplanner.verityinteractive.com/images/19/images_(1)__large.jpeg" alt="Images (1)" />                                           
<img src="http://staging.eventplanner.verityinteractive.com/images/19/images_(1)__large.jpeg" alt="Images (1)" />                                           
<img src="http://staging.eventplanner.verityinteractive.com/images/19/images_(1)__large.jpeg" alt="Images (1)" />                                           
<img src="http://staging.eventplanner.verityinteractive.com/images/19/images_(1)__large.jpeg" alt="Images (1)" />

<img src="http://staging.eventplanner.verityinteractive.com/images/19/images_(2)__large.jpeg" alt="Images (2)" />                                           
<img src="http://staging.eventplanner.verityinteractive.com/images/19/images_(2)__large.jpeg" alt="Images (2)" />                                           
<img src="http://staging.eventplanner.verityinteractive.com/images/19/images_(2)__large.jpeg" alt="Images (2)" />                       
<img src="http://staging.eventplanner.verityinteractive.com/images/19/images_(2)__large.jpeg" alt="Images (2)" />

<img src="http://staging.eventplanner.verityinteractive.com/images/19/images_(3)__large.jpeg" alt="Images (3)" />                                           
<img src="http://staging.eventplanner.verityinteractive.com/images/19/images_(3)__large.jpeg" alt="Images (3)" />                                           
<img src="http://staging.eventplanner.verityinteractive.com/images/19/images_(3)__large.jpeg" alt="Images (3)" />                                                   
<img src="http://staging.eventplanner.verityinteractive.com/images/19/images_(3)__large.jpeg" alt="Images (3)" />

明確にするために、私はすべての画像に対して4つの画像を表示したくありません。あなたがそれを理解できなかった場合。非常に明確にするために、ここに私の質問があります。4 つではなく、アップロードした画像ごとに 1 つの画像しか取得できないようにするにはどうすればよいですか? ありがとうございました。混乱をお詫び申し上げます。

4

2 に答える 2

1

Zoo Visitor 内でチャネル エントリ タグを使用する必要はありません...

于 2012-11-21T14:27:11.277 に答える
0

ループ内にループがあるように見えるため、重複します。チャネル エントリ タグを削除してみましたか?

于 2012-11-21T08:49:14.907 に答える