---
title: Deshabilitar el esquema del sitio web social
url: "https://www.seopress.org/es/soporte/hooks/deshabilitar-el-esquema-del-sitio-web-social/"
lang: es
updated: 2021-10-01
hook_name: wp_head
required_version: 3.5.8
---

# Deshabilitar el esquema del sitio web social

- **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)



