---
title: Filtrer la capacité du widget Matomo Analytics Dashboard
url: "https://www.seopress.org/fr/support/hooks/filtrer-capacite-widget-matomo-analytics-dashboard/"
lang: fr-FR
updated: 2022-10-25
hook_name: seopress_matomo_dashboard_widget_cap
required_version: 6.1
---

# Filtrer la capacité du widget Matomo Analytics Dashboard

- **Hook name:** `seopress_matomo_dashboard_widget_cap`
- **Required version:** 6.1

```php
//This code must be added to a mu-plugin in order to work
function sp_matomo_dashboard_widget_cap(){
	//default: 'edit_dashboard' capability
	return 'edit_posts';
}
add_filter('seopress_matomo_dashboard_widget_cap','sp_matomo_dashboard_widget_cap');


//This second part is necessary to filter the capabilities checked by the AJAX Request / CRON task
add_filter('seopress_capability', 'sp_capability', 10, 2);
function sp_capability($cap, $context) {
	if ($context == 'cron') {
		$cap = 'edit_posts';
	}
	return $cap;
}
```

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



