Created
February 28, 2019 19:57
-
-
Save wp-seopress/782058c82a125aa25ecb81129ebdad59 to your computer and use it in GitHub Desktop.
Filter locale Open Graph
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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