woocommerce_after_resend_order_email хук-событие . WC 1.0
Note the event.
Использование
add_action( 'woocommerce_after_resend_order_email', 'action_function_name_1287', 10, 2 ); function action_function_name_1287( $order, $string ){ // action... }
- $order
- -
- $string
- -
Где вызывается хук
woocommerce_after_resend_order_email
woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-actions.php 110
do_action( 'woocommerce_after_resend_order_email', $order, 'customer_invoice' );
woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-actions.php 125
do_action( 'woocommerce_after_resend_order_email', $order, 'new_order' );