Returns a formatted and sortable table of a user’s course progress.
(string) Formatted table of the passed user’s course progress.
$user_id (int) user ID
if(is_user_logged_in()){
$user_id = get_current_user_id();
$table = wpc_get_course_progress_table($user_id);
echo $table;
}