HEX
Server: LiteSpeed
System: Linux premium71.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
User: consovgw (933)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: //proc/self/root/proc/self/cwd/wp-content/themes/consultio/template-parts/header-branding.php
<?php
/**
 * Template part for displaying site branding
 */

$logo_dark = consultio_get_opt( 'logo', array( 'url' => get_template_directory_uri().'/assets/images/logo-dark.png', 'id' => '' ) );
$logo_light = consultio_get_opt( 'logo_light', array( 'url' => get_template_directory_uri().'/assets/images/logo-light.png', 'id' => '' ) );
$logo_mobile = consultio_get_opt( 'logo_mobile', array( 'url' => get_template_directory_uri().'/assets/images/logo-dark.png', 'id' => '' ) );
$logo_mobile_light = consultio_get_opt( 'logo_mobile_light', array( 'url' => get_template_directory_uri().'/assets/images/logo-light.png', 'id' => '' ) );

$custom_header = consultio_get_page_opt('custom_header');
$p_logo_dark = consultio_get_page_opt('p_logo_dark');
$p_logo_light = consultio_get_page_opt('p_logo_light');
$p_logo_mobile = consultio_get_page_opt('p_logo_mobile');

if($custom_header && !empty($p_logo_dark['url'])) {
    $logo_dark['url'] = $p_logo_dark['url'];
}

if ($logo_dark['url']) {
    printf(
        '<a class="logo-dark" href="%1$s" title="%2$s" rel="home"><img src="%3$s" alt="%2$s"/></a>',
        esc_url( home_url( '/' ) ),
        esc_attr( get_bloginfo( 'name' ) ),
        esc_url( $logo_dark['url'] )
    );
}

if($custom_header && !empty($p_logo_light['url'])) {
    $logo_light['url'] = $p_logo_light['url'];
}

if ($logo_light['url']) {
    printf(
        '<a class="logo-light" href="%1$s" title="%2$s" rel="home"><img src="%3$s" alt="%2$s"/></a>',
        esc_url( home_url( '/' ) ),
        esc_attr( get_bloginfo( 'name' ) ),
        esc_url( $logo_light['url'] )
    );
}

if($custom_header && !empty($p_logo_mobile['url'])) {
    $logo_mobile['url'] = $p_logo_mobile['url'];
}
$e_logo_mobile = consultio_get_page_opt( 'e_logo_mobile' );
$header_type = consultio_get_opt( 'header_type', 'layout' );
$header_type_page = consultio_get_page_opt( 'header_type', 'themeoption' );
if(isset($header_type_page) && !empty($header_type_page) && $header_type_page !== 'themeoption') {
    $header_type = $header_type_page;
}
if($header_type == 'custom' && !empty($e_logo_mobile['url']) ) {
    $logo_mobile = $e_logo_mobile;
}

if ($logo_mobile['url']) {
    printf(
        '<a class="logo-mobile" href="%1$s" title="%2$s" rel="home"><img src="%3$s" alt="%2$s"/></a>',
        esc_url( home_url( '/' ) ),
        esc_attr( get_bloginfo( 'name' ) ),
        esc_url( $logo_mobile['url'] )
    );
}