Skip to content

Instantly share code, notes, and snippets.

@caralgar
Created June 13, 2018 09:35
Show Gist options
  • Save caralgar/e8474e15909c72104b262897bf479e97 to your computer and use it in GitHub Desktop.
Save caralgar/e8474e15909c72104b262897bf479e97 to your computer and use it in GitHub Desktop.
Translate "Home" from breadcrumbs by yoast
<?php
function wpseo_translate_home_breadcrumb($links) {
if ( $links[0]['url'] == home_url('/') ) {
switch (ICL_LANGUAGE_CODE) {
case "es":
$links[0]['text'] = 'Inicio';
break;
default:
$links[0]['text'] = 'Home';
break;
}
}
return $links;
}
add_filter('wpseo_breadcrumb_links', 'wpseo_translate_home_breadcrumb');
@aayushis12
Copy link

Hi

@aayushis12
Copy link

Hi

@aayushis12
Copy link

Hi

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment