comment_reply_link fonksiyonunun çalışması için temana reply-link javascript dosyasını çağırman gerekiyor. Functions.php ye aşağıdaki kodu ekleyerek çalıştırabilirsin.


function yorum_ekle() {
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
add_action( 'wp_enqueue_scripts', 'yorum_ekle' );