Change the locale in open graph in All in One SEO

Change the locale in open graph in All in One SEO on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'aioseo_facebook_tags', 'aioseo_filter_og_locale' );

function aioseo_filter_og_locale( $facebookMeta ) {
   if ( isset( $facebookMeta['og:locale'] ) {
       $facebookMeta['og:locale'] = 'en_US';
   }

   return $facebookMeta;
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.