给 WordPress 评论添加嵌套功能

评论嵌套对于读者来说可以看到谁对谁的回复,WordPress 默认是有提供这个嵌套功能,但有些主题没有提供,如果你想让你的主题实现WordPress评论添加嵌套功能,方法如下:

后台」→「外观」→「编辑」 「functions.php」文件,把以下的内容添加进去:

// 开启wordpress评论嵌套
function enable_threaded_comments(){
if (!is_admin()) {
if (is_singular() AND comments_open() AND (get_option('thread_comments') == 1))
wp_enqueue_script('comment-reply');
}
}
add_action('get_header', 'enable_threaded_comments');

相关文章:

# 更多WordPress技巧,请关注「WordPress专题