使用删除和添加操作对Woocommerce店面标题的内容重新排序



我使用店面的子主题。我已经编辑了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和另一个导航,而不是要删除的导航栏,这意味着导航栏从未被删除......

如何解决这个问题?

您无需覆盖子主题中的header.php...

要正确使用remove_action(),您需要将其嵌入到以这种方式钩接到init动作钩子中的自定义函数中:

add_action('init', 'replace_storefront_primary_navigation' );
function replace_storefront_primary_navigation(){
    remove_action( 'storefront_header', 'storefront_primary_navigation', 50 );
    add_action('storefront_header', 'jk_storefront_header_content', 50);
}
function jk_storefront_header_content(){
    // your custom navigation code goes here
    echo '<span style="display:inline-block; padding:10px; border:solid 1px grey;">My custom mega menu goes Here</span>';
}

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

经过测试并适用于WooCommerce店面主题。

相关内容

  • 没有找到相关文章

最新更新