您可以使用woocommerce_single_product_summary
钩子在WooCommerce的单一产品页面中添加自定义按钮。请检查以下示例。添加了自定义链接,并且button
类将其显示为按钮。
add_action( \'woocommerce_single_product_summary\', \'wpso_add_seller_button\', 15 );
function wpso_add_seller_button() {
echo \'<a href="https://example.com" class="button">Contact Seller</a>\';
}