---
title: Désactiver le schéma social website
url: "https://www.seopress.org/fr/support/hooks/desactiver-le-schema-social-website/"
lang: fr-FR
updated: 2019-06-29
hook_name: wp_head
required_version: 3.5.8
---

# Désactiver le schéma social website

- **Hook name:** `wp_head`
- **Required version:** 3.5.8

```php
add_action( 'wp_head', 'sp_remove_my_action', 0 ); //priority matter
function sp_remove_my_action(){
	remove_action( 'wp_head', 'seopress_social_website_option', 1 );//priority matter
}
```

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



