%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/html/ceaa/wp-content/themes/eduma/learnpress-v2/single-course/
Upload File :
Create Path :
Current File : /var/www/html/ceaa/wp-content/themes/eduma/learnpress-v2/single-course/instructor.php

<?php
/**
 * Template for displaying the instructor of a course
 *
 * @author  ThimPress
 * @package LearnPress/Templates
 * @version 1.0
 */

if ( !defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly
}

$course = LP()->global['course'];

?>

<div class="course-author" itemscope itemtype="http://schema.org/Person">
	<?php echo get_avatar( get_the_author_meta( 'ID' ), 40 ); ?>
<div class="author-contain">
	<label itemprop="jobTitle"><?php esc_html_e( 'Teacher', 'eduma' ); ?></label>

	<div class="value" itemprop="name">
		<a href="<?php echo esc_url( learn_press_user_profile_link( $course->post->post_author ) ); ?>">
			<?php
			$user_data   = get_userdata( $course->post->post_author );
			$author_name = '';
			if ( $user_data ) {
				if( !empty( $user_data->display_name ) ) {
					$author_name = $user_data->display_name;
				}else{
					$author_name = $user_data->user_login;
				}
			}
			echo $author_name;
			?>
		</a>
	</div>
</div>
</div>

Zerion Mini Shell 1.0