定义其可插入功能的WooCommerce文件在加载主题之前不会加载。它通过将包含文件的函数挂接到after_setup_theme
挂钩:
add_action( \'after_setup_theme\', array( $this, \'include_template_functions\' ), 11 );
那是从
/includes/class-woocommerce.php
在WooCommerce中归档。这个
include_template_functions()
函数包括定义以下函数的文件
woocommerce_template_loop_add_to_cart()
.