0

私は多くのいわゆる解決策を検索して調べましたが、何も役に立ちませんでした。li異なるタグに対して同じページに複数の Facebook コメントが必要な状況があります。

コードは私が推測することを明確にするでしょう。

    <?php foreach($events_without_upcoming as $single_events):?>
    <li id="event_<?php echo $single_events->id; ?>" class="events" style="cursor:default"> 
       <span class="sn"><?php $i++; ?></span> 
       <span class="date"><?php echo $new_date?></span>
       <span class="venue"><?php echo $single_events->venue; ?></span>
       <span class="address"><?php echo $single_events->address; ?></span>
       <span class="option"><?php echo share_button('facebook', array('url'=>"http://www.xxxxxx.com", 'text'=>$text))?><?php echo share_button('twitter',   array('url'=>$url, 'text'=>$text, 'via'=>'Lightning At The Opera', 'type'=>'iframe'))?></span>
       <div id="fb_<?php echo $single_events->id; ?>" class="fb_plugin" style="display:none;"></div>
       <div class="fb-like" style="display:block" data-href="http://www.xxxxxx.com/<?php echo $single_events->id; ?>" data-send="true" data-width="450" data-show-faces="false"></div>
       <div class="fb-comments" data-href="http://www.xxxxxx.com/#event<?php echo $single_events->id;?>" data-width="470"></div>            
    </li>
    <?php endforeach;?>

FB コメント プラグインは foreach ループ内にあります。Everyliにはコメント プラグインが含まれています。コードのように data-href に一意の URL を指定しようとしましたが、機能しません。朝からいろいろ試してみましたが、何も見つかりませんでした。

私が自分自身を明確にしていない場合は、必要なことを何でも聞いてください.

事前にThx。

4

1 に答える 1