评论嵌套对于读者来说可以看到谁对谁的回复, 默认是有提供这个嵌套功能,但有些主题没有提供,如果你想让你的主题实现评论添加嵌套功能,方法如下:
「后台」→「外观」→「编辑」 「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');
相关文章:
# 更多技巧,请关注「专题」