| Server IP : 91.220.113.119 / Your IP : 216.73.217.69 Web Server : LiteSpeed System : Linux milad313-ded-e10.tidadns.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : maralloab ( 1965) PHP Version : 8.1.34 Disable Function : mail, show_source, system, shell_exec, passthru, exec, popen, proc_open MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/maralloab/public_html/wp-content/themes/betheme/ |
Upload File : |
<?php
/**
* The Header for our theme.
*
* @package Betheme
* @author Muffin group
* @link https://muffingroup.com
*/
?><!DOCTYPE html>
<?php
if ($_GET && key_exists('mfn-rtl', $_GET)):
echo '<html class="no-js" lang="ar" dir="rtl">';
else:
?>
<html <?php language_attributes(); ?> class="no-js <?php echo esc_attr(mfn_html_classes()); ?>"<?php mfn_tag_schema(); ?> >
<?php endif; ?>
<head>
<meta charset="<?php bloginfo('charset'); ?>" />
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php do_action('mfn_hook_top'); ?>
<?php get_template_part('includes/header', 'sliding-area'); ?>
<?php
if (mfn_header_style(true) == 'header-creative') {
get_template_part('includes/header', 'creative');
}
?>
<div id="Wrapper">
<?php
if (mfn_header_style(true) == 'header-below') {
echo mfn_slider();
}
// $header_tmp_id = mfn_header_ID();
$header_tmp_id = false;
if( $header_tmp_id ){
get_template_part( 'includes/header', 'template', array('id' => $header_tmp_id) );
}else{
get_template_part( 'includes/header', 'classic' );
}
if ( 'intro' == get_post_meta( mfn_ID(), 'mfn-post-template', true ) ) {
get_template_part( 'includes/header', 'single-intro' );
}
?>
<?php do_action( 'mfn_hook_content_before' );