Skip to content

Instantly share code, notes, and snippets.

@wp-seopress
Created February 28, 2019 19:57
Show Gist options
  • Save wp-seopress/782058c82a125aa25ecb81129ebdad59 to your computer and use it in GitHub Desktop.
Save wp-seopress/782058c82a125aa25ecb81129ebdad59 to your computer and use it in GitHub Desktop.
Filter locale Open Graph
function sp_social_og_locale($html) {
//you can add here all your conditions as if is_page(), is_category() etc..
$html = '<meta property="og:locale" content="en_US" />';
return $html;
}
add_filter('seopress_social_og_locale', 'sp_social_og_locale');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment