668 lines
17 KiB
PHP
668 lines
17 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* Zakra header functions to be hooked
|
||
|
*
|
||
|
* @package zakra
|
||
|
*/
|
||
|
|
||
|
if ( ! function_exists( 'zakra_doctype' ) ) :
|
||
|
/**
|
||
|
* Header doctype
|
||
|
*/
|
||
|
function zakra_doctype() {
|
||
|
?><!doctype html>
|
||
|
<html <?php language_attributes(); ?>>
|
||
|
<?php
|
||
|
}
|
||
|
endif;
|
||
|
|
||
|
if ( ! function_exists( 'zakra_head' ) ) :
|
||
|
/**
|
||
|
* HTML head
|
||
|
*/
|
||
|
function zakra_head() {
|
||
|
?>
|
||
|
<meta charset="<?php bloginfo( 'charset' ); ?>">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<link rel="profile" href="http://gmpg.org/xfn/11">
|
||
|
<?php
|
||
|
}
|
||
|
endif;
|
||
|
|
||
|
if ( ! function_exists( 'zakra_page_start' ) ) :
|
||
|
/**
|
||
|
* Page starts
|
||
|
*/
|
||
|
function zakra_page_start() {
|
||
|
?>
|
||
|
<div id="page" class="site tg-site">
|
||
|
<?php
|
||
|
}
|
||
|
endif;
|
||
|
|
||
|
if ( ! function_exists( 'zakra_skip_content_link' ) ) :
|
||
|
/**
|
||
|
* Skip to content
|
||
|
*/
|
||
|
function zakra_skip_content_link() {
|
||
|
?>
|
||
|
<a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'zakra' ); ?></a>
|
||
|
<?php
|
||
|
}
|
||
|
endif;
|
||
|
|
||
|
if ( ! function_exists( 'zakra_transparent_header_start' ) ) :
|
||
|
/**
|
||
|
* Transparent header starts
|
||
|
*/
|
||
|
function zakra_transparent_header_start() {
|
||
|
if ( zakra_is_header_transparent_enabled() ) {
|
||
|
?>
|
||
|
<div class="tg-header-transparent-wrapper">
|
||
|
<?php
|
||
|
}
|
||
|
}
|
||
|
endif;
|
||
|
|
||
|
if ( ! function_exists( 'zakra_header_start' ) ) :
|
||
|
/**
|
||
|
* Header starts
|
||
|
*/
|
||
|
function zakra_header_start() {
|
||
|
?>
|
||
|
<header id="masthead" class="<?php zakra_css_class( 'zakra_header_class' ); ?>">
|
||
|
<?php
|
||
|
}
|
||
|
endif;
|
||
|
|
||
|
/*========================================= HEADER TOP ==========================================*/
|
||
|
|
||
|
if ( ! function_exists( 'zakra_header_top' ) ) :
|
||
|
/**
|
||
|
* Header top.
|
||
|
*/
|
||
|
function zakra_header_top() {
|
||
|
if ( ( ! zakra_is_header_top_enabled() || ( 'none' === get_theme_mod( 'zakra_header_top_left_content', 'text_html' ) && 'none' === get_theme_mod( 'zakra_header_top_right_content', 'text_html' ) ) ) ) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
?>
|
||
|
<div class="<?php zakra_css_class( 'zakra_header_top_class' ); ?>">
|
||
|
<div class="<?php zakra_css_class( 'zakra_header_top_container_class' ); ?>">
|
||
|
<div class="tg-header-top-left-content">
|
||
|
|
||
|
<?php
|
||
|
/**
|
||
|
* Hook - zakra_action_header_top_left_content
|
||
|
*
|
||
|
* @hooked zakra_header_top_left_content - 10
|
||
|
*/
|
||
|
do_action( 'zakra_action_header_top_left_content' );
|
||
|
?>
|
||
|
|
||
|
</div>
|
||
|
<!-- /.tg-header-top-left-content -->
|
||
|
<div class="tg-header-top-right-content">
|
||
|
|
||
|
<?php
|
||
|
/**
|
||
|
* Hook - zakra_action_header_top_right_content
|
||
|
*
|
||
|
* @hooked zakra_header_top_right_content - 10
|
||
|
*/
|
||
|
do_action( 'zakra_action_header_top_right_content' );
|
||
|
?>
|
||
|
|
||
|
</div>
|
||
|
<!-- /.tg-header-top-right-content -->
|
||
|
</div>
|
||
|
<!-- /.tg-container -->
|
||
|
</div>
|
||
|
<!-- /.tg-site-header-top -->
|
||
|
|
||
|
<?php
|
||
|
}
|
||
|
endif;
|
||
|
|
||
|
if ( ! function_exists( 'zakra_header_top_left_content' ) ) :
|
||
|
/**
|
||
|
* Header top left content.
|
||
|
*/
|
||
|
function zakra_header_top_left_content() {
|
||
|
|
||
|
$left_content = get_theme_mod( 'zakra_header_top_left_content', 'text_html' );
|
||
|
|
||
|
switch ( $left_content ) {
|
||
|
|
||
|
case 'text_html':
|
||
|
$text_html = get_theme_mod( 'zakra_header_top_left_content_html', '' );
|
||
|
echo do_shortcode( wp_kses_post( $text_html ) );
|
||
|
break;
|
||
|
|
||
|
case 'menu':
|
||
|
$menu = get_theme_mod( 'zakra_header_top_left_content_menu', 'none' );
|
||
|
|
||
|
if ( 'none' === $menu ) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
wp_nav_menu(
|
||
|
array(
|
||
|
'theme_location' => '',
|
||
|
'menu' => $menu,
|
||
|
'menu_id' => 'header-top-left-menu',
|
||
|
'container' => '',
|
||
|
'depth' => apply_filters( 'zakra_header_top_menu_depth', -1 ),
|
||
|
)
|
||
|
);
|
||
|
break;
|
||
|
|
||
|
case 'widget':
|
||
|
if ( is_active_sidebar( 'header-top-left-sidebar' ) ) {
|
||
|
dynamic_sidebar( 'header-top-left-sidebar' );
|
||
|
}
|
||
|
|
||
|
break;
|
||
|
|
||
|
default:
|
||
|
return;
|
||
|
|
||
|
}
|
||
|
}
|
||
|
endif;
|
||
|
|
||
|
if ( ! function_exists( 'zakra_header_top_right_content' ) ) :
|
||
|
/**
|
||
|
* Header top right content.
|
||
|
*/
|
||
|
function zakra_header_top_right_content() {
|
||
|
|
||
|
$right_content = get_theme_mod( 'zakra_header_top_right_content', 'menu' );
|
||
|
|
||
|
switch ( $right_content ) {
|
||
|
|
||
|
case 'text_html':
|
||
|
$text_html = get_theme_mod( 'zakra_header_top_right_content_html', '' );
|
||
|
echo do_shortcode( wp_kses_post( $text_html ) );
|
||
|
break;
|
||
|
|
||
|
case 'menu':
|
||
|
$menu = get_theme_mod( 'zakra_header_top_right_content_menu', 'none' );
|
||
|
|
||
|
if ( 'none' === $menu ) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
wp_nav_menu(
|
||
|
array(
|
||
|
'menu' => $menu,
|
||
|
'menu_id' => 'header-top-right-menu',
|
||
|
'container' => '',
|
||
|
'depth' => apply_filters( 'zakra_header_top_menu_depth', -1 ),
|
||
|
)
|
||
|
);
|
||
|
|
||
|
break;
|
||
|
|
||
|
case 'widget':
|
||
|
if ( is_active_sidebar( 'header-top-right-sidebar' ) ) {
|
||
|
dynamic_sidebar( 'header-top-right-sidebar' );
|
||
|
}
|
||
|
|
||
|
break;
|
||
|
|
||
|
default:
|
||
|
return;
|
||
|
|
||
|
}
|
||
|
}
|
||
|
endif;
|
||
|
|
||
|
/*========================================== HEADER MAIN ==========================================*/
|
||
|
|
||
|
if ( ! function_exists( 'zakra_before_header_main' ) ) :
|
||
|
/**
|
||
|
* Before header main.
|
||
|
*/
|
||
|
function zakra_before_header_main() {
|
||
|
?>
|
||
|
<div class="tg-site-header-bottom">
|
||
|
<div class="<?php zakra_css_class( 'zakra_header_main_container_class' ); ?>">
|
||
|
<?php
|
||
|
}
|
||
|
endif;
|
||
|
|
||
|
if ( ! function_exists( 'zakra_header_block_one' ) ) :
|
||
|
/**
|
||
|
* TODO: Comment.
|
||
|
*
|
||
|
* @return void
|
||
|
* @since 1.5.0
|
||
|
*
|
||
|
*/
|
||
|
function zakra_header_block_one() {
|
||
|
do_action( 'zakra_header_block_one' );
|
||
|
}
|
||
|
endif;
|
||
|
|
||
|
if ( ! function_exists( 'zakra_header_block_two' ) ) :
|
||
|
/**
|
||
|
* TODO: Comment.
|
||
|
*
|
||
|
* @return void
|
||
|
* @since 1.5.0
|
||
|
*
|
||
|
*/
|
||
|
function zakra_header_block_two() {
|
||
|
do_action( 'zakra_header_block_two' );
|
||
|
}
|
||
|
endif;
|
||
|
|
||
|
if ( ! function_exists( 'zakra_header_main' ) ) :
|
||
|
/**
|
||
|
* Render HTML for Group One HTML containing various components according to customizer options.
|
||
|
*
|
||
|
* @return void
|
||
|
* @since 1.4.7
|
||
|
*
|
||
|
*/
|
||
|
function zakra_header_main() {
|
||
|
get_template_part( 'template-parts/header/header', 'layout-markup-1' );
|
||
|
}
|
||
|
endif;
|
||
|
|
||
|
if ( ! function_exists( 'zakra_header_main_site_branding' ) ) :
|
||
|
/**
|
||
|
* Site branding.
|
||
|
*/
|
||
|
function zakra_header_main_site_branding() {
|
||
|
?>
|
||
|
<div class="site-branding">
|
||
|
<?php
|
||
|
|
||
|
// Check for meta logo.
|
||
|
$meta_logo_id = ! is_home() ? intval( get_post_meta( zakra_get_post_id(), 'zakra_logo', true ) ) : '';
|
||
|
|
||
|
if ( $meta_logo_id ) {
|
||
|
$meta_logo_attr = array(
|
||
|
'class' => 'tg-logo',
|
||
|
'itemprop' => 'logo',
|
||
|
);
|
||
|
|
||
|
// @codingStandardsIgnoreStart
|
||
|
$meta_logo = apply_filters( 'zakra_meta_logo', zakra_get_image_by_id( $meta_logo_id, $meta_logo_attr, get_bloginfo( 'name', 'display' ) ) ); // WPCS: CSRF ok.
|
||
|
// @codingStandardsIgnoreEnd
|
||
|
|
||
|
echo sprintf(
|
||
|
'<a href="%1$s" class="tg-logo-link" rel="home" itemprop="url">%2$s</a>',
|
||
|
esc_url( home_url( '/' ) ),
|
||
|
$meta_logo
|
||
|
);
|
||
|
} else {
|
||
|
|
||
|
do_action('zakra_mobile_logo');
|
||
|
|
||
|
the_custom_logo();
|
||
|
}
|
||
|
?>
|
||
|
<div class="site-info-wrap">
|
||
|
<?php
|
||
|
if ( is_front_page() && is_home() ) :
|
||
|
?>
|
||
|
<h1 class="site-title">
|
||
|
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
|
||
|
<?php
|
||
|
else :
|
||
|
?>
|
||
|
<p class="site-title">
|
||
|
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
|
||
|
</p>
|
||
|
<?php
|
||
|
endif;
|
||
|
|
||
|
$zakra_description = get_bloginfo( 'description', 'display' );
|
||
|
|
||
|
if ( $zakra_description || is_customize_preview() ) :
|
||
|
?>
|
||
|
<p class="site-description"><?php echo $zakra_description; /* WPCS: xss ok. */ ?></p>
|
||
|
<?php endif; ?>
|
||
|
</div>
|
||
|
|
||
|
</div><!-- .site-branding -->
|
||
|
<?php
|
||
|
}
|
||
|
endif;
|
||
|
|
||
|
if ( ! function_exists( 'zakra_primary_menu' ) ) :
|
||
|
function zakra_primary_menu() {
|
||
|
// Bail out if the menu is disabled from customizer.
|
||
|
if ( get_theme_mod( 'zakra_primary_menu_disabled', false ) ) {
|
||
|
return;
|
||
|
}
|
||
|
?>
|
||
|
<nav id="site-navigation" class="<?php zakra_css_class( 'zakra_nav_class' ); ?> <?php zakra_primary_menu_class(); ?>">
|
||
|
<?php
|
||
|
wp_nav_menu(
|
||
|
array(
|
||
|
'theme_location' => 'menu-primary',
|
||
|
'menu_id' => 'primary-menu',
|
||
|
'menu_class' => 'menu-primary',
|
||
|
'container_class' => 'menu',
|
||
|
'fallback_cb' => 'zakra_menu_fallback',
|
||
|
)
|
||
|
);
|
||
|
?>
|
||
|
</nav><!-- #site-navigation -->
|
||
|
<?php
|
||
|
|
||
|
}
|
||
|
endif;
|
||
|
|
||
|
if ( ! function_exists( 'zakra_header_main_site_navigation' ) ) :
|
||
|
/**
|
||
|
* Site navigation.
|
||
|
*/
|
||
|
function zakra_header_main_site_navigation() {
|
||
|
|
||
|
/**
|
||
|
* Add header elements before primary navigation.
|
||
|
*
|
||
|
* @since 1.4.7
|
||
|
*/
|
||
|
do_action( 'zakra_primary_menu_before' );
|
||
|
|
||
|
zakra_primary_menu();
|
||
|
|
||
|
/**
|
||
|
* Add header elements after primary navigation.
|
||
|
*
|
||
|
* @since 1.4.7
|
||
|
*/
|
||
|
do_action( 'zakra_primary_menu_after' );
|
||
|
}
|
||
|
endif;
|
||
|
|
||
|
if ( ! function_exists( 'zakra_header_main_action' ) ) :
|
||
|
/**
|
||
|
* Header Action.
|
||
|
*/
|
||
|
function zakra_header_main_action() {
|
||
|
?>
|
||
|
<div id="header-action" class="<?php zakra_css_class( 'zakra_header_action_class' ); ?>">
|
||
|
<ul class="header-action-list">
|
||
|
<?php
|
||
|
echo apply_filters( 'zakra_header_search', zakra_search_icon_menu_item() );
|
||
|
|
||
|
echo apply_filters( 'zakra_woocommerce_header_cart', '' );
|
||
|
?>
|
||
|
</ul>
|
||
|
</div><!-- #header-action -->
|
||
|
<?php
|
||
|
|
||
|
do_action( 'zakra_header_nav_toggle' );
|
||
|
}
|
||
|
endif;
|
||
|
|
||
|
if( ! function_exists( 'zakra_mobile_navigation_toggle' ) ) :
|
||
|
|
||
|
function zakra_mobile_navigation_toggle() {
|
||
|
|
||
|
$mobile_menu_label = get_theme_mod( 'zakra_mobile_menu_text', '' );
|
||
|
|
||
|
if ( get_theme_mod( 'zakra_primary_menu_disabled', false ) ) {
|
||
|
return;
|
||
|
}
|
||
|
?>
|
||
|
<div class="tg-mobile-toggle <?php zakra_css_class( 'zakra_header_mobile_menu_toggle_class' ); ?>"
|
||
|
<?php echo wp_kses_post( apply_filters( 'zakra_nav_toggle_data_attrs', '' ) ); ?>>
|
||
|
<?php
|
||
|
// @codingStandardsIgnoreStart
|
||
|
echo apply_filters( 'zakra_before_mobile_menu_toggle', '' ); // WPCS: CSRF ok.
|
||
|
// @codingStandardsIgnoreEnd
|
||
|
?>
|
||
|
|
||
|
<button aria-label="<?php esc_attr_e( 'Primary Menu', 'zakra' ); ?>" >
|
||
|
<i class="tg-icon tg-icon-bars"><?php echo esc_html( $mobile_menu_label ); ?></i>
|
||
|
</button>
|
||
|
</div><!-- /.tg-mobile-toggle -->
|
||
|
<?php
|
||
|
}
|
||
|
endif;
|
||
|
|
||
|
if ( ! function_exists( 'zakra_mobile_navigation' ) ) :
|
||
|
/**
|
||
|
* Adds mobile navigation.
|
||
|
*/
|
||
|
function zakra_mobile_navigation() {
|
||
|
?>
|
||
|
<nav id="mobile-navigation" class="<?php zakra_css_class( 'zakra_mobile_nav_class' ); ?>"
|
||
|
|
||
|
<?php echo wp_kses_post( apply_filters( 'zakra_nav_data_attrs', '' ) ); ?>>
|
||
|
|
||
|
<?php
|
||
|
wp_nav_menu(
|
||
|
array(
|
||
|
'theme_location' => apply_filters( 'zakra_mobile_menu_location', 'menu-primary' ),
|
||
|
'menu_id' => 'mobile-primary-menu',
|
||
|
)
|
||
|
);
|
||
|
|
||
|
echo apply_filters( 'zakra_header_search', zakra_search_icon_menu_item() );
|
||
|
echo apply_filters( 'zakra_woocommerce_header_cart', '' );
|
||
|
?>
|
||
|
|
||
|
</nav><!-- /#mobile-navigation-->
|
||
|
<?php
|
||
|
}
|
||
|
endif;
|
||
|
|
||
|
if ( ! function_exists( 'zakra_after_header_main' ) ) :
|
||
|
/**
|
||
|
* After header main.
|
||
|
*/
|
||
|
function zakra_after_header_main() {
|
||
|
?>
|
||
|
</div>
|
||
|
<!-- /.tg-container -->
|
||
|
</div>
|
||
|
<!-- /.tg-site-header-bottom -->
|
||
|
<?php
|
||
|
}
|
||
|
endif;
|
||
|
|
||
|
if ( ! function_exists( 'zakra_header_end' ) ) :
|
||
|
/**
|
||
|
* Header ends.
|
||
|
*/
|
||
|
function zakra_header_end() {
|
||
|
?>
|
||
|
</header><!-- #masthead -->
|
||
|
<?php
|
||
|
}
|
||
|
endif;
|
||
|
|
||
|
if ( ! function_exists( 'zakra_transparent_header_end' ) ) :
|
||
|
/**
|
||
|
* Transparent header ends
|
||
|
*/
|
||
|
function zakra_transparent_header_end() {
|
||
|
if ( zakra_is_header_transparent_enabled() ) {
|
||
|
?>
|
||
|
</div> <!-- /.tg-header-transparent-wrapper -->
|
||
|
<?php
|
||
|
}
|
||
|
}
|
||
|
endif;
|
||
|
|
||
|
if ( ! function_exists( 'zakra_header_media_markup' ) ) :
|
||
|
/**
|
||
|
* Header media tag.
|
||
|
*/
|
||
|
function zakra_header_media_markup() {
|
||
|
the_custom_header_markup();
|
||
|
}
|
||
|
endif;
|
||
|
|
||
|
|
||
|
if ( ! function_exists( 'zakra_main_start' ) ) :
|
||
|
/**
|
||
|
* Page main section starts.
|
||
|
*/
|
||
|
function zakra_main_start() {
|
||
|
?>
|
||
|
<main id="main" class="site-main">
|
||
|
<?php
|
||
|
}
|
||
|
endif;
|
||
|
|
||
|
if ( ! function_exists( 'zakra_page_header' ) ) :
|
||
|
/**
|
||
|
* Page header.
|
||
|
*/
|
||
|
function zakra_page_header() {
|
||
|
|
||
|
$page_header_meta = get_post_meta( zakra_get_post_id(), 'zakra_page_header' );
|
||
|
|
||
|
// Return, if page header is disabled from customizer.
|
||
|
if ( ( 'page-header' !== zakra_is_page_title_enabled() && ! zakra_is_breadcrumbs_enabled() ) ||
|
||
|
( isset( $page_header_meta[0] ) && ! $page_header_meta[0] ) ) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
// Return, if Latest Posts on frontpage.
|
||
|
if ( is_front_page() && is_home() ) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
$allowed_markup = array( 'h1', 'h2', 'h3', 'h3', 'h4', 'h5', 'h6', 'span', 'p', 'div' );
|
||
|
$markup = get_theme_mod( 'zakra_page_title_markup', 'h1' );
|
||
|
$style = apply_filters( 'zakra_page_title_align_filter', get_theme_mod( 'zakra_page_title_alignment', 'tg-page-header--left' ) );
|
||
|
|
||
|
// If the markup doesn't match the allowed one set default one.
|
||
|
if ( ! in_array( $markup, $allowed_markup, true ) ) {
|
||
|
$markup = 'h1';
|
||
|
}
|
||
|
|
||
|
// Finale.
|
||
|
$markup = apply_filters( 'zakra_page_header_markup', $markup );
|
||
|
|
||
|
do_action( 'zakra_before_page_header' );
|
||
|
|
||
|
if ( zakra_is_woocommerce_active() && function_exists( 'is_woocommerce' ) && is_woocommerce() // If WooCommerce pages.
|
||
|
&& 'content-area' === get_theme_mod( 'zakra_page_title_enabled', 'page-header' ) // If page title in content area.
|
||
|
|| ( is_front_page() && is_page_template( 'page-templates/pagebuilder.php' ) ) ) { // If static front page with page builder template.
|
||
|
|
||
|
return;
|
||
|
}
|
||
|
?>
|
||
|
|
||
|
<header class="tg-page-header <?php echo esc_attr( $style ); ?>">
|
||
|
<div class="<?php zakra_css_class( 'zakra_page_header_container_class' ); ?>">
|
||
|
<?php
|
||
|
if ( 'page-header' === get_theme_mod( 'zakra_page_title_enabled', 'page-header' ) ) {
|
||
|
$page_title = zakra_get_title();
|
||
|
|
||
|
// Page header title.
|
||
|
echo sprintf(
|
||
|
'<%1$s class="tg-page-header__title">%2$s</%1$s>',
|
||
|
esc_attr( $markup ),
|
||
|
wp_kses_post( $page_title )
|
||
|
);
|
||
|
}
|
||
|
?>
|
||
|
|
||
|
<?php
|
||
|
// Page header breadcrumb.
|
||
|
if ( function_exists( 'breadcrumb_trail' ) && zakra_is_breadcrumbs_enabled() ) {
|
||
|
|
||
|
// Use WooCommerce breadcrumb.
|
||
|
if ( zakra_is_woocommerce_active() && function_exists( 'is_woocommerce' ) && is_woocommerce() ) {
|
||
|
|
||
|
// Show WC breadcrumb on page header.
|
||
|
if ( 'page-header' === get_theme_mod( 'zakra_page_title_enabled', 'page-header' ) ) {
|
||
|
|
||
|
// Remove Breadcrumb from content.
|
||
|
remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0 );
|
||
|
|
||
|
// Make WC breadcrumb with the theme.
|
||
|
woocommerce_breadcrumb(
|
||
|
array(
|
||
|
'wrap_before' => '<nav role="navigation" aria-label="' . esc_html__( 'Breadcrumbs', 'zakra' ) . '" class="breadcrumb-trail breadcrumbs"><ul class="trail-items">',
|
||
|
'wrap_after' => '</ul></nav>',
|
||
|
'before' => '<li class="trail-item">',
|
||
|
'after' => '</li>',
|
||
|
'delimiter' => '',
|
||
|
)
|
||
|
);
|
||
|
}
|
||
|
} else { // Theme breadcrumb.
|
||
|
/**
|
||
|
* Hook - zakra_action_breadcrumbs
|
||
|
*
|
||
|
* @hooked zakra_breadcrumbs - 10
|
||
|
*/
|
||
|
do_action( 'zakra_action_breadcrumbs' );
|
||
|
}
|
||
|
}
|
||
|
?>
|
||
|
</div>
|
||
|
</header>
|
||
|
<!-- /.page-header -->
|
||
|
<?php
|
||
|
do_action( 'zakra_after_page_header' );
|
||
|
}
|
||
|
endif;
|
||
|
|
||
|
if ( ! function_exists( 'zakra_breadcrumbs' ) ) :
|
||
|
/**
|
||
|
* Container starts.
|
||
|
*/
|
||
|
function zakra_breadcrumbs() {
|
||
|
|
||
|
breadcrumb_trail(
|
||
|
array(
|
||
|
'show_browse' => false,
|
||
|
)
|
||
|
);
|
||
|
}
|
||
|
endif;
|
||
|
|
||
|
if ( ! function_exists( 'zakra_content_start' ) ) :
|
||
|
/**
|
||
|
* Container starts.
|
||
|
*/
|
||
|
function zakra_content_start() {
|
||
|
?>
|
||
|
<div id="content" class="site-content">
|
||
|
<div class="tg-container tg-container--flex tg-container--flex-space-between">
|
||
|
<?php
|
||
|
}
|
||
|
endif;
|
||
|
|
||
|
if ( ! function_exists( 'zakra_change_logo_attr' ) ) :
|
||
|
|
||
|
/**
|
||
|
* Change the logo image attr while retina logo is set.
|
||
|
* @param $attr
|
||
|
* @param $attachment
|
||
|
* @param $size
|
||
|
*
|
||
|
* @return mixed
|
||
|
*/
|
||
|
function zakra_change_logo_attr( $attr, $attachment, $size ) {
|
||
|
$custom_logo = get_theme_mod( 'custom_logo' );
|
||
|
$retina_logo = get_theme_mod( 'zakra_retina_logo' );
|
||
|
|
||
|
if ( $custom_logo && $retina_logo && isset( $attr['class'] ) && 'custom-logo' === $attr['class'] ) {
|
||
|
$attr['srcset'] = '';
|
||
|
$custom_logo_src = wp_get_attachment_image_src( $custom_logo, 'full' );
|
||
|
$custom_logo_url = $custom_logo_src[0];
|
||
|
|
||
|
// Set srcset.
|
||
|
$attr['srcset'] = $custom_logo_url . ' 1x, ' . $retina_logo . ' 2x';
|
||
|
}
|
||
|
|
||
|
return $attr;
|
||
|
}
|
||
|
endif;
|