---
title: SEOPress activation hook
url: "https://www.seopress.org/fr/support/hooks/seopress-activation-hook/"
lang: fr-FR
updated: 2018-04-10
hook_name: seopress_activation
required_version: 0.1
---

# SEOPress activation hook

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



