---
title: Filter URL to inspect with Google Inspect URL API
url: "https://www.seopress.org/support/hooks/filter-url-to-inspect-with-google-inspect-url-api/"
lang: en-US
updated: 2022-05-09
hook_name: seopress_inspect_url_permalink
required_version: 5.7
---

# Filter URL to inspect with Google Inspect URL API

- **Hook name:** `seopress_inspect_url_permalink`
- **Required version:** 5.7

```php
function sp_inspect_url_permalink($url) {
	//default: get_permalink();
	return $url;
}
add_filter('seopress_inspect_url_permalink', 'sp_inspect_url_permalink');
```

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



