You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.5 KiB
38 lines
1.5 KiB
<?php if ( ! defined( 'WOODMART_THEME_DIR' ) ) {
|
|
exit( 'No direct script access allowed' );}
|
|
|
|
/**
|
|
* ------------------------------------------------------------------------------------------------
|
|
* Header clone structure template
|
|
* ------------------------------------------------------------------------------------------------
|
|
*/
|
|
|
|
$template = '
|
|
<div class="whb-sticky-header whb-clone whb-main-header <%wrapperClasses%>">
|
|
<div class="<%cloneClass%>">
|
|
<div class="container">
|
|
<div class="whb-flex-row whb-general-header-inner">
|
|
<div class="whb-column whb-col-left whb-visible-lg">
|
|
<%.site-logo%>
|
|
</div>
|
|
<div class="whb-column whb-col-center whb-visible-lg">
|
|
<%.wd-header-main-nav%>
|
|
</div>
|
|
<div class="whb-column whb-col-right whb-visible-lg">
|
|
<%.wd-header-my-account%>
|
|
<%.wd-header-search:not(.wd-header-search-mobile)%>
|
|
<%.wd-header-wishlist%>
|
|
<%.wd-header-compare%>
|
|
<%.wd-header-cart%>
|
|
<%.wd-header-fs-nav%>
|
|
</div>
|
|
<%.whb-mobile-left%>
|
|
<%.whb-mobile-center%>
|
|
<%.whb-mobile-right%>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
';
|
|
|
|
return apply_filters( 'woodmart_header_clone_template', $template );
|
|
|