woocommerce_product_after_tabs

ACTION woocommerce\templates\single-product\tabs\tabs.php (ligne 53) github
Filter tabs and allow third parties to add their own. Each tab is an array containing title, callback and priority.

Paramètres

Entrée :
N/A
Sortie :
N/A

Utilisation

// Ajouter une fonction au hook action 'woocommerce_product_after_tabs'
add_action('woocommerce_product_after_tabs', 'ma_fonction_personnalisee', 10, 1);

function ma_fonction_personnalisee() {
    // Votre code ici
    error_log('Hook woocommerce_product_after_tabs déclenché');
}

Actualités

Chargement des actualités...