woocommerce_admin_order_actions_end action-hookWC 6.7.0

Fires after the order action buttons (within the actions column for the order list table) are rendered.

Usage

add_action( 'woocommerce_admin_order_actions_end', 'wp_kama_woocommerce_admin_order_actions_end_action' );

/**
 * Function for `woocommerce_admin_order_actions_end` action-hook.
 * 
 * @param WC_Order $order Current order object.
 *
 * @return void
 */
function wp_kama_woocommerce_admin_order_actions_end_action( $order ){

	// action...
}
$order(WC_Order)
Current order object.

Changelog

Since 6.7.0 Introduced.

Where the hook is called

ListTable::render_wc_actions_column()
woocommerce_admin_order_actions_end
woocommerce/src/Internal/Admin/Orders/ListTable.php 1187
do_action( 'woocommerce_admin_order_actions_end', $order );

Where the hook is used in WooCommerce

Usage not found.