---
title: Filter link attributes on post_content
url: "https://www.seopress.org/support/hooks/filter-link-attributes-on-post_content/"
lang: en-US
updated: 2022-07-21
hook_name: seopress_link_attrs
required_version: 5.9
---

# Filter link attributes on post_content

- **Hook name:** `seopress_link_attrs`
- **Required version:** 5.9

```php
add_filter('seopress_link_attrs', 'sp_link_attrs');
function sp_link_attrs($attrs) {
	$attrs['noreferrer '] = '';
	$attrs[' noreferrer'] = '';

	return $attrs;
}
```

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



