---
title: Change beacon SVG icon of the universal SEO metabox
url: "https://www.seopress.org/support/hooks/change-beacon-svg-icon-of-the-universal-seo-metabox/"
lang: en-US
updated: 2021-09-29
hook_name: seopress_beacon_svg
required_version: 5.0
---

# Change beacon SVG icon of the universal SEO metabox

- **Hook name:** `seopress_beacon_svg`
- **Required version:** 5.0

```php
function sp_beacon_svg($url) {
    $url = 'https://example.com/beacon.svg';
    return $url;
}
add_filter('seopress_beacon_svg', 'sp_beacon_svg');
```

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



