bio.php
7 years ago
courses_taken.php
7 years ago
enrolled_course.php
7 years ago
reviews_wrote.php
7 years ago
bio.php
14 lines
| 1 | <?php |
| 2 | $user_name = sanitize_text_field(get_query_var('tutor_student_username')); |
| 3 | $get_user = tutor_utils()->get_user_by_login($user_name); |
| 4 | $user_id = $get_user->ID; |
| 5 | |
| 6 | |
| 7 | $profile_bio = get_user_meta($user_id, '_tutor_profile_bio', true); |
| 8 | if ($profile_bio){ |
| 9 | ?> |
| 10 | <h3><?php _e('About Me:', 'tutor'); ?></h3> |
| 11 | <?php echo wpautop($profile_bio) ?> |
| 12 | <?php } else{ |
| 13 | _e('Bio data is empty', 'tutor'); |
| 14 | } ?> |