移动woocommerce shortdescription

时间:2017-03-13 17:18:06

标签: wordpress woocommerce

我是wordpress的新手,我试图从woocommerce的产品页面细节移动块。在我的情况下,我试图在添加按钮后移动short_description块,但是没有工作。

这是我的代码:

add_action( 'woocommerce_after_add_to_cart_button', 'woocommerce_short_description');

1 个答案:

答案 0 :(得分:1)

woocommerce_short_description是一个过滤器,而不是加载简短描述模板的函数。您想要的功能是woocommerce_template_single_excerpt

add_action( 'woocommerce_after_add_to_cart_button', 'woocommerce_template_single_excerpt' );