mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
9 lines
320 B
Text
9 lines
320 B
Text
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;
|
|
}
|
|
}
|