woocommerce_my_account_my_orders_actions
Использование
add_filter( 'woocommerce_my_account_my_orders_actions', 'wp_kama_woocommerce_my_account_orders_actions_filter', 10, 2 );
/**
* Function for `woocommerce_my_account_my_orders_actions` filter-hook.
*
* @param $actions
* @param $order
*
* @return
*/
function wp_kama_woocommerce_my_account_orders_actions_filter( $actions, $order ){
// filter...
return $actions;
}
- $actions
- -
- $order
- -
Где вызывается хук
woocommerce_my_account_my_orders_actions
woocommerce/includes/wc-account-functions.php 340
return apply_filters( 'woocommerce_my_account_my_orders_actions', $actions, $order );
Где используется хук в WooCommerce
woocommerce/includes/gateways/paypal/class-wc-gateway-paypal.php 207
add_filter( 'woocommerce_my_account_my_orders_actions', array( $this, 'hide_action_buttons' ), 10, 2 );