18 lines
421 B
PHP
18 lines
421 B
PHP
<?php
|
|
/**
|
|
* Header-1 template.
|
|
*
|
|
* @author ThemeFusion
|
|
* @copyright (c) Copyright by ThemeFusion
|
|
* @link https://avada.com
|
|
* @package Avada
|
|
* @subpackage Core
|
|
*/
|
|
|
|
// Do not allow directly accessing this file.
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit( 'Direct script access denied.' );
|
|
}
|
|
$header_type = Avada()->settings->get( 'header_layout' );
|
|
get_template_part( 'templates/header-' . $header_type );
|