---
title: Filter the message for managing the choice of cookies
url: "https://www.seopress.org/support/hooks/filter-the-message-for-managing-the-choice-of-cookies/"
lang: en-US
updated: 2024-07-03
hook_name: seopress_rgpd_edit_message
required_version: 8.0
---

# Filter the message for managing the choice of cookies

- **Hook name:** `seopress_rgpd_edit_message`
- **Required version:** 8.0

```php
function sp_rgpd_full_message($user_msg, $edit_cookie_btn) { 
	return '<div id="my-cookie-bar">'.$user_msg.$edit_cookie_btn.'</div>';
}
add_filter('seopress_rgpd_edit_message', 'sp_rgpd_full_message', 10, 2); 
```

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



