• Currently my page’s source says:

    <meta property="og:locale" content="en_GB" />

    Do the plugin settings allow for en_CA or any other changes?

Viewing 1 replies (of 1 total)
  • Plugin Author Sybre Waaijer

    (@cybr)

    Hello!

    I vividly remember a discussion around this topic, you can find it here:
    https://www.ads-software.com/support/topic/oglocale-problem/

    It boils down to that the Open Graph protocol doesn’t support en_CA (among other locales), so we fall back to en_GB when your site’s in Canadian English.

    You can try and see if en_CA is supported on the social networks you interact with, however, by implementing this filter:

    add_filter( 'the_seo_framework_oglocale_output', function( $locale ) {
    	return 'en_CA';
    } );

    But, I doubt it’ll be beneficial ??

Viewing 1 replies (of 1 total)
  • The topic ‘The SEO Framework – Open Graph Local Lang from GB to CA’ is closed to new replies.