wpuzman
WordPress Developer
Kullanıcı
-
Üyelik
13.01.2017
-
Yaş/Cinsiyet
33 / E
-
Meslek
Yazılım
-
Konum
Trabzon
-
Ad Soyad
B** M**
-
Mesajlar
2771
-
Beğeniler
293 / 949
-
Ticaret
33, (%100)
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' );