HEX
Server: LiteSpeed
System: Linux standart108 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64
User: pplae2ji7 (11089)
PHP: 8.3.33
Disabled: opcache_get_status
Upload Files
File: /var/www/vhosts/plasmak.com.tr/httpdocs/wp-content/themes/buliten-wp-full/buliten/header.php
<?php $options = _WSH()->option();
    buliten_bunch_global_variable();
    $icon_href = (buliten_set($options, 'site_favicon')) ? buliten_set($options, 'site_favicon') : get_template_directory_uri().'/images/favicon.png';
 ?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<?php if (! function_exists('has_site_icon') || ! has_site_icon()):?>
    <link rel="shortcut icon" href="<?php echo esc_url($icon_href);?>" type="image/x-icon">
    <link rel="icon" href="<?php echo esc_url($icon_href);?>" type="image/x-icon">
<?php endif;?>
<!-- Responsive -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">

<?php wp_head(); ?>
</head>

<body <?php body_class(); ?>>
 <?php wp_body_open(); ?>   

<div class="page-wrapper <?php if (buliten_set($options, 'enable_rtl')) {
     echo 'rtl';
 } ?>">

    <?php if (buliten_set($options, 'preloader')):?>
        <!-- Preloader -->
        <div class="preloader"></div>
    <?php endif;?>

    <?php $meta = _WSH()->get_meta( '_bunch_header_settings' );
          if(buliten_set( $meta, 'header_styles' )) $header_style = buliten_set( $meta, 'header_styles' ); else
          $header_style = buliten_set($options, 'header_style', 'header_v2');
                    
        if( $header_style == 'header_v1') {
            get_template_part( 'includes/modules/header_v1' );
        }
        elseif ( $header_style == 'header_v2'  ) {
            get_template_part( 'includes/modules/header_v2' );
        }
        elseif ( $header_style == 'header_v3'  ) {
            get_template_part( 'includes/modules/header_v3' );
        }
        else {
            get_template_part( 'includes/modules/header_v2' );
        }
    ?>