---
title: Gancho de desactivación SEOPress
url: "https://www.seopress.org/es/soporte/hooks/gancho-de-desactivacion-seopress/"
lang: es
updated: 2021-09-30
hook_name: seopress_deactivation
required_version: 0.1
---

# Gancho de desactivación SEOPress

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



