重新排序WooCommerce Hooks

时间:2016-05-02 13:38:43

标签: wordpress templates woocommerce hook sidebar

我正在尝试重新排序WooCommerce中的钩子。
我尝试首先显示侧边栏然后显示内容。目前它首先加载产品,然后加载侧边栏:

screenshot

这是钩子,我还附加了输出源代码:

  <?php
        /**
         * woocommerce_sidebar hook.
         *
         * @hooked woocommerce_get_sidebar - 10
         */
        do_action( 'woocommerce_sidebar' );
    ?>

    <?php
        /**
         * woocommerce_after_main_content hook.
         *
         * @hooked woocommerce_output_content_wrapper_end - 10 (outputs closing divs for the content)
         */

        do_action( 'woocommerce_after_main_content' );
    ?>

0 个答案:

没有答案