Skip to content

Instantly share code, notes, and snippets.

@runezero
Created May 25, 2022 13:56
Show Gist options
  • Select an option

  • Save runezero/d04ae59b28a737e5f9698e437dea329d to your computer and use it in GitHub Desktop.

Select an option

Save runezero/d04ae59b28a737e5f9698e437dea329d to your computer and use it in GitHub Desktop.
[Change social share text] Change the translation for the social share title #enfold
add_filter('avia_social_share_title', 'enfold_modify_share_title');
function enfold_modify_share_title(){
if (get_locale() == "en_US"){
return "Share this article";
}
if (get_locale() == "nl_NL"){
return "Deel dit artikel";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment