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

# Gancho de activación SEOPress

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

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

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



