Collapse-o-matic插件和Wordpress评论如何循环?

时间:2013-10-28 20:34:29

标签: wordpress loops plugins

我正在尝试使用此插件“Collapse-O-Matic”来处理wordpress网站的评论区域。这个插件基本上可以折叠一个部分并扩展它,但我特别需要它做的是折叠和扩展单个注释而不是整个注释部分。

我找到了它的位置,我能够添加它,但它只是将崩溃添加到第一个注释“comment_text()”而不是其他注释,我认为这意味着我需要添加一些循环,这就是我被困住的地方。

以下是代码:

     <span class="collapseomatic" id="comments<?php the_ID(); ?>">Expand</span>
    <span id="swap-comments<?php the_ID(); ?>" class="collapseomatic" style="display: none;">Collapse</span>
    <div id="target-comments<?php the_ID(); ?>" class="collapseomatic_content">

    <?php comment_text() ?>

    <div class="reply">
    <?php comment_reply_link(array_merge( $args, array('add_below' => $add_below, 'depth' => $depth, 'max_depth' => $args['max_depth']))) ?>
    </div>
    <?php if (1): // 'div' != $args['style'] ) : ?>
    </div>
    <?php endif; ?>

    </div>

对此的任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:1)

如果您没有使用Livefyre或Disqus等实时评论插件,以下代码应该可以解决问题:

 <?php do_shortcode('[expand title="read more" swaptitle="read less"]'.comments_template().'[/expand]'); ?>

Livefyre抵制我最大的努力来解决它,这非常令人沮丧。