Css隐藏除最低嵌套评论外的所有评论回复链接

时间:2016-01-25 作者:Pete

我知道不同的主题对回复链接使用不同的css,但是应该有足够的本地WP css将其缩小到最低的嵌套注释。

我正试图了解默认的WP注释css,它将使我能够隐藏显示:无除了嵌套注释的最底层之外的所有回复链接。

1 个回复
SO网友:Bruno Cantuaria

我相信最简单的方法是使用javascript。它将在每个评论列表中导航并只显示最后一个按钮。类似于:

jQuery(document).ready( function($){

    //Hide all buttons
    $(\'.comments li .reply-button\').hide(0);

    //Navigate through all comments
    $(\'.comments li\').each( function() {

        //Lets check if there is children comments in this one
        if (! ($(this).children(\'.children\').length > 0)) {

            //Don\'t have, so let\'s show this button
            $(this).find(\'.reply-button\').show(0);
        }

    })
})