---
title: Filtrer l&rsquo;url à inspecter avec l&rsquo;API Google Inspect URL
url: "https://www.seopress.org/fr/support/hooks/filtrer-lurl-a-inspecter-avec-lapi-google-inspect-url/"
lang: fr-FR
updated: 2022-05-09
hook_name: seopress_inspect_url_permalink
required_version: 5.7
---

# Filtrer l&rsquo;url à inspecter avec l&rsquo;API Google Inspect URL

- **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)



