---
title: Change / remove SEOPress icon in admin bar
url: "https://www.seopress.org/support/hooks/change-remove-seopress-icon-in-admin-bar/"
lang: en-US
updated: 2021-09-29
hook_name: seopress_adminbar_icon
required_version: 3.0
---

# Change / remove SEOPress icon in admin bar

- **Hook name:** `seopress_adminbar_icon`
- **Required version:** 3.0

```php
function sp_adminbar_icon($html) { 
	$html = 'SEO'; 
	return $html; 
}
add_filter('seopress_adminbar_icon', 'sp_adminbar_icon');
```

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



