HEX
Server: Apache
System: Linux VM-16-7-centos 3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 x86_64
User: www (1000)
PHP: 7.4.33
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,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_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot/www.molinta.com/wp-content/themes/context-blog/sidebar/about-author-section.php
<?php

$context_blog_image_width  = get_theme_mod( 'context_blog_sidebar_about_image_width', 300 );
$context_blog_image_height = get_theme_mod( 'context_blog_sidebar_about_image_height', 300 );
if ( get_theme_mod( 'context_blog_sidebar_about_author_enable', '0' ) ) : ?>
	
	<div class="sidebar-block sidebar-about text-center sidebar-block-title">
		<h3 class="title"><?php echo esc_html( get_theme_mod( 'context_blog_sidebar_about_author_heading' ) ); ?></h3>
		<?php if ( ! context_blog_get_bio_image_url() == null ) : ?>
		<div class="img-holder">
			<img width = "<?php echo esc_attr( $context_blog_image_width ); ?>" height="<?php echo esc_attr( $context_blog_image_height ); ?>"  src="<?php echo esc_url( context_blog_get_bio_image_url() ); ?> " 
			alt="<?php echo esc_attr( get_post_meta( attachment_url_to_postid( context_blog_get_bio_image_url() ), '_wp_attachment_image_alt', true ) ); ?>">
		</div>
		<?php endif; ?>
		<div class= "about-content">
			<p><?php echo esc_html( get_theme_mod( 'context_blog_sidebar_about_author_textarea' ) ); ?></p>
			<?php if ( get_theme_mod( 'context_blog_about_author_social_enable', 1 ) == 1 ) : ?>
				<ul class="social-links">
					<?php context_blog_introduction_social_links_items(); ?>
				</ul>
				<?php
			endif;
			if ( get_theme_mod( 'context_blog_sidebar_about_author_readmore_btn', 1 ) == 1 ) :
				?>
				<a href="<?php echo esc_url( get_theme_mod( 'context_blog_about_author_readmore_url' ) ); ?>" class="btn btn-text"><?php echo esc_html( get_theme_mod( 'context_blog_about_author_readmore_text' ) ); ?></a>
			<?php endif; ?>
		</div>
	</div>
	<?php
endif;?>