WordPress Medya Sayfasını Yoruma Kapatma
WordPress'te yazılarımıza eklediğimiz dosyaların gösterildiği sayafayı yoruma kapatmak için temanızın functions.php dosyasına aşağıdaki kodları ekleyebilirsiniz. Kodlar disqus kullanan siteler için de geçerlidir aynı şekilde disqus yorumlarını da kapatır. Alternatif olarak bu Disable Comments eklentisini de kullanabilirsiniz.
/** Stop comments being used on Media Files **/ add_filter( 'comments_open', 'stopMediaComments', 10, 2 ); function stopMediaComments( $open, $post_id ) { $post = get_post( $post_id ); if ( 'attachment' == $post->post_type ) $open = false; return $open; } /** This is used to get around non-native WordPress plugins **/ add_filter('get_header', 'lcTurnCommentsOff'); function lcTurnCommentsOff(){ global $post; if ( 'attachment' == $post->post_type ) $post->comment_status="closed"; }