Hook allowing extenders to render custom content within the Order details box. This allows urgent notices or other important order-related info to be displayed upfront in the order page. Example: display a notice if the order is disputed.
$order
Sortie :
@param $order WC_Order The order object being displayed.
// Ajouter une fonction au hook action 'woocommerce_admin_order_data_after_payment_info'
add_action('woocommerce_admin_order_data_after_payment_info', 'ma_fonction_personnalisee', 10, 1);
function ma_fonction_personnalisee($order) {
// Votre code ici
error_log('Hook woocommerce_admin_order_data_after_payment_info déclenché');
}
Chargement des actualités...