---
title: SEOPress deactivation hook
url: "https://www.seopress.org/support/hooks/seopress-deactivation-hook/"
lang: en-US
updated: 2021-09-30
hook_name: seopress_deactivation
required_version: 0.1
---

# SEOPress deactivation hook

- **Hook name:** `seopress_deactivation`
- **Required version:** 0.1

```php
function sp_deactivation() { 
	//do something here 
	return $something;
}
add_action('seopress_deactivation','sp_deactivation'); 
```

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



