---
title: SEOPress activation hook
url: "https://www.seopress.org/support/hooks/seopress-activation-hook/"
lang: en-US
updated: 2021-09-30
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)



