使用删除和添加操作重新排序Woocommerce Storefront标头的内容

时间:2018-01-07 20:06:47

标签: php wordpress woocommerce hook-woocommerce storefront

我使用Storefront的子主题。我已经编辑了header.php文件的副本,我在删除导航栏后添加了这部分额外的div:

<header id="masthead" class="site-header" role="banner" style="<?php storefront_header_styles(); ?>">
    <div class="col-full">

        <?php
        /**
         * Functions hooked into storefront_header action
         *
         * @hooked storefront_skip_links                       - 0
         * @hooked storefront_social_icons                     - 10
         * @hooked storefront_site_branding                    - 20
         * @hooked storefront_secondary_navigation             - 30
         * @hooked storefront_product_search                   - 40
         * @hooked storefront_primary_navigation_wrapper       - 42
         * @hooked storefront_primary_navigation               - 50
         * @hooked storefront_header_cart                      - 60
         * @hooked storefront_primary_navigation_wrapper_close - 68
         */
    **remove_action( 'storefront_header', 'storefront_primary_navigation', 50 );**
    **add_action('storefront_header', 'storefront_primary_navigation', 51);**

    **add_action('storefront_header', 'jk_storefront_header_content', 50);**        
    do_action( 'storefront_header' ); 

        ?>          
    </div>
</header><!-- #masthead -->

这似乎是正确的,但不是导航栏被删除和替换我有旧的导航栏额外的div和另一个导航,这意味着导航栏从未被删除...

如何解决这个问题?

1 个答案:

答案 0 :(得分:2)

您不需要在子主题中覆盖split(setNames(df$b, df$a), df$id) # $id1 # a b c d e # 1 2 3 4 5 # # $id2 # a b c d e # 5 4 3 2 1 ...

要正确使用header.php,您需要将其嵌入到以 remove_action() 操作挂钩的自定义函数中:

init

代码进入活动子主题(或活动主题)的function.php文件。

经过测试并使用WooCommerce Storefront主题。