// =========================================================================
//CHANGE DEFAULT STOREFRONT HEADER LAYOUT
// =========================================================================
function remove_storefront_actions() {
remove_action( 'storefront_header', 'storefront_product_search', 40 );
remove_action( 'storefront_header', 'storefront_primary_navigation', 50 );
remove_action( 'storefront_header', 'storefront_header_cart', 60 );
}
add_action( 'init', 'remove_storefront_actions' );
function add_top_bar_opening_wrap(){
echo '<div class="top-bar">';
}
function add_top_bar_closing_wrap(){
echo '</div>';
}
add_action( 'storefront_before_header', 'add_top_bar_opening_wrap', 1 );
add_action( 'storefront_before_header', 'storefront_header_cart', 2 );
add_action( 'storefront_before_header', 'storefront_product_search', 40 );
add_action( 'storefront_before_header', 'add_top_bar_closing_wrap', 50 );
Leave a Reply