File: /home/salhiscp/salhab360photos.com/wp-content/themes/acora/header.php
<?php
/**
* Enque files.
*
* @package acora
* @since acora 1.0
*/
// Include deault header
get_template_part('template-parts/header');
// Add header slider
$add_sidebar = is_page_template('page-templates/blog-without-sidebar.php');
if(get_post_type() == 'post' || !empty($add_sidebar)){
if(((!is_single() && AcoraData::$data->blog_settings['show_header_in_archive'] && empty($wp_query->query_vars['type']))
|| (is_single() && AcoraData::$data->blog_settings['show_header_in_single'])
|| !empty($add_sidebar))
&& !empty(AcoraData::$data->blog_settings['header_images'])){
get_template_part('template-parts/slider-header');
}
}