在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');
短代碼解決大問題,你學廢了嗎