Add-Ons
Unlock more possibilities for your LMS.
Integrations
Connect with tools you already use.
Migration
Switch to Tutor LMS with confidence.
Blog
Learn, grow, and stay ahead in eLearning.
Documentation
Everything you need to build with Tutor LMS.
Videos
Learn visually with tutorials.
Release Notes
See what’s new in every update.
Partners
Explore our trusted Tutor LMS partners.
Editing or Adding More Course Levels
If you want to change the names of the existing course levels in Tutor LMS, please paste this code to your theme’s functions.php file. In this example code, we changed Beginner to Newbie, Intermediate to Rookie, and Expert to Professional.
add_filter('tutor_course_level', 'modify_course_level');
if ( ! function_exists('modify_course_level')){
function modify_course_level($levels){
$levels['beginner'] = "Newbie";
$levels['intermediate'] = "Rookie";
$levels['expert'] = "Professional";
return $levels;
}
}If you want to add more levels to the existing 3, use this code instead. Here, we’re adding 2 new levels to the existing ones.
add_filter('tutor_course_level', 'add_extra_course_level');
if ( ! function_exists('add_extra_course_level')){
function add_extra_course_level($levels){
$levels['extra-level-1'] = "Professional";
$levels['extra-level-2'] = "Open for All";
return $levels;
}
}Join the world’s #1 Tutor LMS community
By submitting your email, you agree to our Terms and Privacy Policy
Product
Solutions
Build, manage, and scale your eLearning business with the most powerful WordPress LMS — all in one place.
Crafted by Humans
Proudly built using
© 2026 All Rights Reserved