Hossein Sibsorkhi
حسین سیب سرخی
بیوگرافی
موزیک ویدئوها
مشاهده بیشتر
// Ensure comments are enabled for FarsKids media content without changing layout add_filter('comments_open', function($open, $post_id){ $post = get_post($post_id); if($post && in_array($post->post_type, array('music','album','music-video'))){ return true; } return $open; }, 10, 2); add_filter('get_comments_number', function($count, $post_id){ return $count; }, 10, 2);