woocommerce_before_resend_order_emails action-hookWC 1.0

Usage

add_action( 'woocommerce_before_resend_order_emails', 'wp_kama_woocommerce_before_resend_order_emails_action', 10, 2 );

/**
 * Function for `woocommerce_before_resend_order_emails` action-hook.
 * 
 * @param  $order  
 * @param  $string 
 *
 * @return void
 */
function wp_kama_woocommerce_before_resend_order_emails_action( $order, $string ){

	// action...
}
$order
-
$string
-

Where the hook is called

WC_Meta_Box_Order_Actions::save()
woocommerce_before_resend_order_emails
woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-actions.php 134
do_action( 'woocommerce_before_resend_order_emails', $order, 'customer_invoice' );
woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-actions.php 151
do_action( 'woocommerce_before_resend_order_emails', $order, 'new_order' );

Where the hook is used in WooCommerce

Usage not found.