---
title: Filtrer l’auteur / éditeur Open Graph
url: "https://www.seopress.org/fr/support/hooks/filtrer-lauteur-editeur-open-graph/"
lang: fr-FR
updated: 2018-11-03
hook_name: seopress_social_og_author
required_version: 3.3
---

# Filtrer l’auteur / éditeur Open Graph

- **Hook name:** `seopress_social_og_author`
- **Required version:** 3.3

```php
function sp_social_og_author($html) { 
	//you can add here all your conditions as if is_page(), is_category() etc.. 
	$html = '<meta property="article:author" content="https://www.facebook.com/seopresspro/" />
<meta property="article:publisher" content="https://www.facebook.com/seopresspro/" />'; 
	return $html;
}
add_filter('seopress_social_og_author', 'sp_social_og_author');
```

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



