wpseo_locale хук-фильтрYoast 1.0

Filter: wpseo_locale Allow changing the locale output.

Note that this filter is different from wpseo_og_locale, which is run _after_ the OG specific filtering.

Использование

add_filter( 'wpseo_locale', 'wp_kama_wpseo_locale_filter' );

/**
 * Function for `wpseo_locale` filter-hook.
 * 
 * @param string $locale Locale string.
 *
 * @return string
 */
function wp_kama_wpseo_locale_filter( $locale ){

	// filter...
	return $locale;
}
$locale(строка)
Locale string.

Где вызывается хук

Open_Graph_Locale_Generator::generate()
wpseo_locale
yoast/src/generators/open-graph-locale-generator.php 27
$locale = \apply_filters( 'wpseo_locale', \get_locale() );

Где используется хук в Yoast SEO

Использование не найдено.