MemberPress: Disable Comments for Courses, Lessons, Quizzes, and Assignments
add_filter(‘comments_open’, function($open, $post_id) { $post = get_post($post_id); // Check if the post type is ‘mpcs-lesson’ or ‘mpcs-course’ if (in_array($post->post_type, [‘mpcs-lesson’, ‘mpcs-course’, ‘mpcs-quiz’, ‘mpcs-assignment’])) { $open = false; } return $open; }, 10, 2);Continue reading