Skip to content

Instantly share code, notes, and snippets.

@MrVibe
Created March 11, 2022 01:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MrVibe/7c757d9e72d507177f0f2f39bb960fe0 to your computer and use it in GitHub Desktop.
Save MrVibe/7c757d9e72d507177f0f2f39bb960fe0 to your computer and use it in GitHub Desktop.
functions.php
add_filter('wplms_get_student_mmy_course_tabs',function($tabs){
$tabs['custom'] = 'My Custom Tab';
return $tabs;
});
add_filter('wplms_course_tab_data',function($data,$args,$course_id){
if($args['tab'] == 'custom'){
// Add content to $data
}
return $data;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment