签出单个产品的内容。php WooCommerce模板,了解哪些函数挂接在哪里。评论很好。当您了解挂钩和过滤器时,所有这些问题开始变得相似。
您需要从当前挂钩中删除该函数,并将其添加到新挂钩中。这个示例包含一个假挂钩目标,因为我不知道您使用的主题是什么,而且所有主题都不同。这是您的功能。php或子主题的函数。php:
function wpa116854_move_product_excerpt(){
remove_acton( \'woocommerce_single_product_summary\', \'woocommerce_template_single_excerpt\', 20 );
if(function_exists(\'woocommerce_template_single_excerpt\'))
add_action( \'your_theme_some_hook\', \'woocommerce_template_single_excerpt\' );
}
add_action( \'woocommerce_before_single_product\', \'wpa116854_move_product_excerpt\' );
更换
your_theme_some_hook
使用适当的挂钩。或者您可以添加
woocommerce_template_single_excerpt()
直接向您的
sidebar.php
文件
if(function_exists(\'woocommerce_template_single_excerpt\'))
woocommerce_template_single_excerpt();
我不久前写的解释如何操纵的东西
WordPress functions and action hooks.