HEX
Server: LiteSpeed
System: Linux s787.bom1.mysecurecloudhost.com 4.18.0-477.13.1.lve.el8.x86_64 #1 SMP Thu Jun 1 16:40:47 EDT 2023 x86_64
User: mobilech (5348)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: //proc/thread-self/cwd/wp-content/plugins/tutor/templates/profile/bio.php
<?php
/**
 * Profile Bio Template
 *
 * @package Tutor\Templates
 * @subpackage Profile
 * @author Themeum <support@themeum.com>
 * @link https://themeum.com
 * @since 1.4.3
 */

$user_name = sanitize_text_field( get_query_var( 'tutor_profile_username' ) );
$get_user  = tutor_utils()->get_user_by_login( $user_name );
$user_id   = $get_user->ID;


$profile_bio  = get_user_meta( $user_id, '_tutor_profile_bio', true );

if ( $profile_bio ) {
	?>
	<?php echo wp_kses_post( wpautop( $profile_bio ) ); ?>
	<?php
} else {
	esc_html_e( 'Bio data is empty', 'tutor' );
}