Server IP : 213.176.29.180 / Your IP : 3.129.24.240 Web Server : Apache System : Linux 213.176.29.180.hostiran.name 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64 User : webtaragh ( 1001) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/webtaragh/public_html/wp-content/upgrade-temp-backup/../plugins/../themes/sassico/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php /** * The header template for the theme */ ?> <!DOCTYPE html> <html <?php language_attributes(); ?>> <head> <meta charset="<?php bloginfo( 'charset' ); ?>"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <?php wp_head(); ?> </head> <body <?php body_class(); ?> > <?php if( function_exists('wp_body_open')){ wp_body_open(); } $header_builder_enable = sassico_option('header_builder_enable', 'no'); $header_settings = sassico_option('theme_header_default_settings'); if($header_builder_enable=='yes' && class_exists('ElementsKit')){ if(class_exists('\ElementsKit\Utils::render_elementor_content')){ echo \ElementsKit\Utils::render_elementor_content($header_settings['yes']['sassico_header_builder_select']); }else{ $elementor = \Elementor\Plugin::instance(); echo \ElementsKit\Utils::render($elementor->frontend->get_builder_content_for_display( $header_settings['yes']['sassico_header_builder_select'] )); } }else{ get_template_part( 'template-parts/headers/header', 'content' ); }