woocommerce_product_title

FILTER woocommerce\includes\abstracts\abstract-wc-product.php (ligne 1905) github
Get the product's title. For products this is the product name.

Paramètres

Entrée :
$this->get_name(
Sortie :
@return string

Utilisation

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

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

Actualités

Chargement des actualités...