File: /mnt/data/dreamsrent-wp/wp-content/themes/dreamsrent/templates/header/header-centerlogo.php
<!DOCTYPE html>
<html <?php language_attributes(); ?> >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?php bloginfo( 'charset' ); ?>" />
<link rel="profile" href="//gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"/>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?> >
<?php wp_body_open(); ?>
<?php
if(in_array('redux-framework/redux-framework.php', apply_filters('active_plugins', get_option('active_plugins'))))
{
$main_logo = dreamsrent_fl_framework_getoptions('frontend_logo');
if(isset($main_logo) && $main_logo != '')
{
$main_logo_url = $main_logo['url'];
}
$mobile_logo = dreamsrent_fl_framework_getoptions('small_logo');
if(isset($mobile_logo) && $mobile_logo != '')
{
$mobile_logo_url = $mobile_logo['url'];
}
} else {
$main_logo_url = get_template_directory_uri().'/assets/images/logo.svg';
$mobile_logo_url = get_template_directory_uri().'/assets/images/logo-small.png';
}
?>
<div class="main-wrapper login-body">
<header class="log-header">
<a href="<?php echo esc_url(home_url('/')); ?>"><img class="img-fluid logo-dark" src="<?php echo esc_url($main_logo_url); ?>" alt="<?php echo get_bloginfo('name');?>"></a>
</header>
<!-- /Header -->