add_action( 'woocommerce_cart_is_empty', 'bbloomer_add_content_empty_cart' );
function bbloomer_add_content_empty_cart() {
echo 'This will show on the empty cart page';
}
How can we help you?
WooCommerce:将内容添加到空购物车页面
< 1 min read
< 1 min read
add_action( 'woocommerce_cart_is_empty', 'bbloomer_add_content_empty_cart' );
function bbloomer_add_content_empty_cart() {
echo 'This will show on the empty cart page';
}