📌  相关文章
📜  添加到购物车按钮后添加内容 woo commerce - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:11.134000             🧑  作者: Mango

代码示例1
add_action( 'woocommerce_after_add_to_cart_button', 'add_content_after_addtocart_button_func' );

function add_content_after_addtocart_button_func() {

// Echo content.

echo '
Place your content here!
'; }