我正在开发一个基于 Woocommerce 的网站,现在我在单页上。我的疑问是如何在那里重新排序一些钩子。最初,我们有这个顺序(优先级):
<?php
/*
* @hooked woocommerce_template_single_title - 5
* @hooked woocommerce_template_single_price - 10
* @hooked woocommerce_template_single_excerpt - 20
* @hooked woocommerce_template_single_add_to_cart - 30
* @hooked woocommerce_template_single_meta - 40
* @hooked woocommerce_template_single_sharing - 50
*/
?>
根据我的布局,我需要将元素按以下顺序排列:
1: Title
2: Name of the product category (last level category where that product was classified in the admin)
3: Quantity switch and "add to cart" button
4 and last: Description
如何在我的主题中的“函数”文件上重新定义它?有任何想法吗?