评论论坛也显示在你回复的评论下

时间:2013-02-26 作者:TheWebs

我正在制作一个主题,我在其中构建了自己的自定义线程,并使用twitter引导。我现在有了它,因此,根据默认设置,当您单击“回复”时,您将被击落到WordPress评论论坛。

有没有办法让评论论坛找到你?显示在您回复的评论下方?

1 个回复
最合适的回答,由SO网友:Chip Bennett 整理而成

Enqueue the \'comment-reply\' script.

function wpse88530_enqueue_comment_reply() {
// Enqueue the comment-reply script on 
//single blog post pages with comments 
// open and threaded comments
if ( 
    // Returns the value for the specified option.
    // \'thread_comments\' is a Boolean option where
    // comments are threaded if TRUE, and flat if 
    // FALSE
    get_option( \'thread_comments\' ) 
) { 
    // enqueue the javascript that performs 
    //in-link comment reply fanciness
    wp_enqueue_script( \'comment-reply\' ); 
}
}
// Hook into comment_form_before
add_action( \'comment_form_before\', \'wpse88530_enqueue_comment_reply\' );
结束

相关推荐

如何使用GET_COMMENTS获取混合状态的评论?

有没有一种方法可以获得多个评论status 使用get_comments 作用比方说,我想两者兼得trash 和hold 评论。对于帖子也可以这样做:get_posts(array(\'post_status\' => \'draft,private,trash\')); get_posts(array(\'post_status\' => array(\'draft\', \'private\', \'trash\'))); 我想做的是:get_comments(array