我在一个基于 Woocommerce 的网站上工作,现在我在单页上。我的疑问是如何在那里重新排序一些钩子(Hook)。最初,我们有这个顺序(优先级):

<?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

如何在我的主题中的“功能”文件中重新定义它?有任何想法吗?

最佳答案

这是很久以前的事了,但如果有人感兴趣,请在 functions.php 文件中删除并添加您自己的操作以重新排序单个产品摘要的内容:

remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_meta', 40);
add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_meta', 5 );

10-05 20:33