woocommerce_get_email_fulfillment_items_table

FILTER woocommerce\includes\wc-template-functions.php (ligne 3728) github
Filter to modify the email fulfillment items table HTML.

Paramètres

Entrée :
ob_get_clean(
Sortie :
@param string   $html The HTML output of the fulfillment items table.
@param WC_Order $order The order object.
@param Fulfillment $fulfillment The fulfillment object.

Utilisation

// Modifier la valeur avec le filtre 'woocommerce_get_email_fulfillment_items_table'
add_filter('woocommerce_get_email_fulfillment_items_table', 'ma_fonction_filtre', 10, 1);

function ma_fonction_filtre(ob_get_clean() {
    // Modifier la valeur
    return ob_get_clean(;
}

Actualités

Chargement des actualités...