---
title: Disable social website schema
url: "https://www.seopress.org/support/hooks/disable-social-website-schema/"
lang: en-US
updated: 2021-09-29
hook_name: wp_head
required_version: 3.5.8
---

# Disable social website schema

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



