Sid Gifari File Manager
🏠 Root
/
home
/
ailwtbdh
/
public_html
/
wp-content
/
themes
/
profund
/
template-parts
/
Editing: site-header.php
<?php if ( class_exists( 'Redux' ) ) { global $profund_opt; }else{ $profund_opt = array(); $profund_opt['titlebar_align'] = 'center'; $profund_opt['breadcrumb_home'] = 'Home'; $profund_opt['breadcrumb_separator'] = '|'; $profund_opt['sub_title_format'] = 1; } ?> <header class="header-area <?php echo esc_attr($profund_opt['titlebar_align']); ?>" > <div class="container"> <div class="row"> <div class="col-xs-12"> <h3 class="page-title"><?php echo profund_page_title(); ?></h3> <?php if( $profund_opt['sub_title_format'] == 1 ){ echo '<div class="sub-title site-description">'.get_bloginfo( 'description' ) .'</div>'; }elseif($profund_opt['sub_title_format'] == 2 and function_exists('profund_breadcrumb') ){ echo profund_breadcrumb($profund_opt['breadcrumb_home'],$profund_opt['breadcrumb_separator']); }elseif($profund_opt['sub_title_format'] == 3 and !empty($profund_opt['custom_sub_title']) ){ echo '<div class="sub-title">'. wp_kses_post($profund_opt['custom_sub_title']) .'</div>'; } ?> </div> </div> </div> </header>
Save
Cancel