mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-02 12:02:25 +08:00
https://jodyvanv.com/snippets/override-and-set-the-facebook-open-graph-locale-the-yoast-wordpress-seo-plugin-puts-in-the-wordpress-head/
5 lines
111 B
Text
5 lines
111 B
Text
add_filter('wpseo_locale', 'override_og_locale');
|
|
function override_og_locale($locale)
|
|
{
|
|
return "en_US";
|
|
}
|