在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');

短代码解决大问题,你学废了吗