woocommerce_order_item_add_action_buttons
Usage
add_action( 'woocommerce_order_item_add_action_buttons', 'wp_kama_woocommerce_order_item_add_action_buttons_action' ); /** * Function for `woocommerce_order_item_add_action_buttons` action-hook. * * @param $order * * @return void */ function wp_kama_woocommerce_order_item_add_action_buttons_action( $order ){ // action... }
- $order
- -
Where the hook is called
woocommerce_order_item_add_action_buttons
woocommerce/includes/admin/meta-boxes/views/html-order-items.php 309
do_action( 'woocommerce_order_item_add_action_buttons', $order );