woocommerce_product_form_templates

FILTER woocommerce\src\Admin\Features\ProductBlockEditor\ProductFormsController.php (ligne 76) github
Allow extend the list of templates that should be auto-generated.

Paramètres

Entrée :
$this->product_form_templates
Sortie :
@param array $templates List of templates to auto-generate.

Utilisation

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

function ma_fonction_filtre($this->product_form_templates) {
    // Modifier la valeur
    return $this->product_form_templates;
}

Actualités

Chargement des actualités...