---
title: Activer la metabox SEO universelle pour les produits WooCommerce (ou tout autre type de publication)
url: "https://www.seopress.org/fr/support/hooks/activer-la-metabox-seo-universelle-pour-les-produits-woocommerce/"
lang: fr-FR
updated: 2021-10-22
hook_name: seopress_can_enqueue_universal_metabox
required_version: 5.0
---

# Activer la metabox SEO universelle pour les produits WooCommerce (ou tout autre type de publication)

- **Hook name:** `seopress_can_enqueue_universal_metabox`
- **Required version:** 5.0

```php
add_filter('seopress_can_enqueue_universal_metabox', 'sp_can_enqueue_universal_metabox');
function sp_can_enqueue_universal_metabox() {
    global $pagenow;
    global $typenow;
    
    if ('post-new.php' == $pagenow || 'post.php' == $pagenow) {
        if ('product' == $typenow) {
            return true;
        }
    }
    
    return false;
}
```

Source: [https://gist.github.com/wp-seopress/eb4ee33cb28751bd657331e18003ccdf](https://gist.github.com/wp-seopress/eb4ee33cb28751bd657331e18003ccdf)



