我正在尝试重新排序WooCommerce中的钩子。
我尝试首先显示侧边栏然后显示内容。目前它首先加载产品,然后加载侧边栏:
这是钩子,我还附加了输出源代码:
<?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' );
?>