HEX
Server: Apache/2.4.65 (Debian)
System: Linux web6 5.10.0-36-amd64 #1 SMP Debian 5.10.244-1 (2025-09-29) x86_64
User: innocamp (1028)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //home/youtil/.Trash/public_html-workingold/wp-content/themes/Total/author-bio.php
<?php
/**
 * The template for displaying Author bios.
 *
 * @package Total WordPress Theme
 * @subpackage Templates
 * @version 5.0
 */

defined( 'ABSPATH' ) || exit;

$data = (array) wpex_get_author_box_data();

if ( empty( $data ) ) {
	return;
}

extract( $data );

?>

<section class="author-bio wpex-sm-flex wpex-boxed wpex-mb-40 wpex-text-center wpex-sm-text-left">

	<?php if ( ! empty( $avatar ) ) { ?>

		<div class="author-bio-avatar wpex-flex-shrink-0 wpex-sm-mr-20 wpex-mb-15 wpex-sm-mb-0">

			<?php if ( ! empty( $posts_url ) ) { ?>

				<a href="<?php echo esc_url( $posts_url ); ?>" title="<?php esc_attr_e( 'Visit Author Page', 'total' ); ?>"><?php echo wpex_sanitize_data( $avatar, 'img' ); ?></a>

			<?php } else { ?>

				<?php echo wpex_sanitize_data( $avatar, 'img' ); ?>

			<?php } ?>

		</div>

	<?php } ?>

	<div class="author-bio-content wpex-flex-grow wpex-last-mb-0">

		<?php if ( ! empty( $author_name ) ) { ?>

			<h4 class="author-bio-title wpex-m-0 wpex-mb-10 wpex-text-lg">

				<?php if ( ! empty( $posts_url ) ) { ?>

					<a href="<?php echo esc_url( $posts_url ); ?>" title="<?php esc_attr_e( 'Visit Author Page', 'total' ); ?>"><?php echo strip_tags( $author_name ); ?></a>

				<?php } else { ?>

					<?php echo strip_tags( $author_name ); ?>

				<?php } ?>

			</h4>

		<?php } ?>

		<?php
		// Outputs the author description if one exists
		if ( ! empty( $description ) ) { ?>

			<div class="author-bio-description wpex-mb-15 wpex-last-mb-0"><?php
				echo wpautop( do_shortcode( wp_kses_post( $description ) ) );
			?></div>

		<?php } ?>

		<?php
		// Display author social links if there are social links defined
		wpex_author_box_social_links( $post_author ); ?>

	</div>

</section>