HEX
Server: nginx/1.20.2
System: Linux racknerd-d3d1ff4 3.10.0-693.11.6.el7.x86_64 #1 SMP Thu Jan 4 01:06:37 UTC 2018 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.movieloversky.com/wp-content/themes/filmax/templates/header-logo.php
<?php
/**
 * The template to display the logo or the site name and the slogan in the Header
 *
 * @package WordPress
 * @subpackage FILMAX
 * @since FILMAX 1.0
 */

$filmax_args = get_query_var('filmax_logo_args');

// Site logo
$filmax_logo_type   = isset($filmax_args['type']) ? $filmax_args['type'] : '';
$filmax_logo_image  = filmax_get_logo_image($filmax_logo_type);
$filmax_logo_text   = filmax_is_on(filmax_get_theme_option('logo_text')) ? get_bloginfo( 'name' ) : '';
$filmax_logo_slogan = get_bloginfo( 'description', 'display' );
if (!empty($filmax_logo_image) || !empty($filmax_logo_text)) {
	?><a class="sc_layouts_logo" href="<?php echo is_front_page() ? '#' : esc_url(home_url('/')); ?>"><?php
		if (!empty($filmax_logo_image)) {
			if (empty($filmax_logo_type) && function_exists('the_custom_logo') && (int) $filmax_logo_image > 0) {
				the_custom_logo();
			} else {
				$filmax_attr = filmax_getimagesize($filmax_logo_image);
				echo '<img src="'.esc_url($filmax_logo_image).'" alt="'.esc_attr__('logo', 'filmax').'"'.(!empty($filmax_attr[3]) ? ' '.wp_kses_data($filmax_attr[3]) : '').'>';
			}
		} else {
			filmax_show_layout(filmax_prepare_macros($filmax_logo_text), '<span class="logo_text">', '</span>');
			filmax_show_layout(filmax_prepare_macros($filmax_logo_slogan), '<span class="logo_slogan">', '</span>');
		}
	?></a><?php
}
?>