Fires at the end of order actions meta box rendering.
$order_id
Sortie :
// Ajouter une fonction au hook action 'woocommerce_order_actions_end'
add_action('woocommerce_order_actions_end', 'ma_fonction_personnalisee', 10, 1);
function ma_fonction_personnalisee($order_id) {
// Votre code ici
error_log('Hook woocommerce_order_actions_end déclenché');
}
Chargement des actualités...