Wordpress评论

时间:2011-11-21 22:21:55

标签: php wordpress

我正在网站上工作,客户希望显示随机推荐,以便在刷新时轮换。使用的推荐书只是人们留下的评论。所以,我几乎已经把评论摘录了,但我很难得到随机评论,它只是拉最新的。有没有办法做到这一点?这是我正在使用的代码:

<?php 

        $args = array(
        'status' => approve,
        'number' => 1,
        'orderby' => 'rand',
        );

        $comments = get_comments($args); ?>
        <h3 class="side-heading">Customer Tesimonials</h3>
            <div class="testimonials-inner">
                <div class="testimonials-inner-inner">
                <?php foreach ($comments as $comment) { ?>
                    <p><?php
                        $title = get_the_title($comment->comment_post_ID);
                        echo get_avatar( $comment, '53' );
                        //echo '<span class="recommauth">' . ($comment->comment_author) . '</span>';
                        ?>"<?php
                        echo wp_html_excerpt( $comment->comment_content, 72 ); ?>"
                    </p>
                <?php }  ?>

                <br />

                <a class="re" href="/"><h4 class="butt-sub">Tell Your Story</h4></a>
                </div>
            </div>
        </div>
    </div>

谢谢!

2 个答案:

答案 0 :(得分:0)

orderby = rand不适用于WordPress评论,只适用于帖子。有关详细信息,请参阅以下链接。

http://wordpress.org/support/topic/show-random-comment

答案 1 :(得分:0)

这不是经过测试的代码,但是这样吗?

<?php 
    $args = array(
        'status' => 'approve',
    );

    $all_comments = get_comments($args);
    $random_key = array_rand($all_comments, 1);

    $comments = array($all_comments[$random_key]); ?>