在 WooCommerce 编辑优惠券管理页面顶部添加 html

问题描述 投票:0回答:1

我正在努力将一些简单的 html 添加到编辑优惠券页面的顶部。我是否使用了错误的动作挂钩?

add_action( 'woocommerce_edit_coupon_form_before_coupon_data', 'add_html_next_to_coupon_code' );

function add_html_next_coupon_code() {
    echo '<p> HTML content.</p>';
}
php wordpress woocommerce admin coupon
1个回答
0
投票

您已使用右钩“woocommerce_edit_coupon_form_before_coupon_data”。但错过了调用相同的函数。您的函数名称是

add_html_next_coupon_code

请按照此代码

add_action( 'woocommerce_edit_coupon_form_before_coupon_data', 'add_html_next_coupon_code' );

function add_html_next_coupon_code() {
    echo '<p> HTML content.</p>';
}
© www.soinside.com 2019 - 2024. All rights reserved.