wpseo_opengraph_title
Filter: wpseo_opengraph_title Allow changing the Yoast SEO generated title.
Использование
add_filter( 'wpseo_opengraph_title', 'wp_kama_wpseo_opengraph_title_filter', 10, 2 );
/**
* Function for `wpseo_opengraph_title` filter-hook.
*
* @param string $title The title.
* @param Indexable_Presentation $presentation The presentation of an indexable.
*
* @return string
*/
function wp_kama_wpseo_opengraph_title_filter( $title, $presentation ){
// filter...
return $title;
}
- $title(строка)
- The title.
- $presentation(Indexable_Presentation)
- The presentation of an indexable.
Где вызывается хук
wpseo_opengraph_title
yoast/src/presenters/open-graph/title-presenter.php 41
$title = \trim( (string) \apply_filters( 'wpseo_opengraph_title', $title, $this->presentation ) );