Tagged: breadcrumbs, change
Hello.
How to change first word “Home” in breadcrumbs on the another word in a different language?
Sorry, my english is not good=)
Hi Bearded!
Please add following code to Functions.php in Appearance > Editor and adjust as needed
add_filter('avia_breadcrumbs_args', 'avia_change_home_breadcrumb', 10, 1);
function avia_change_home_breadcrumb($args){
$args['show_home'] = 'Another Word';
return $args;
}
Best regards,
Yigit
It works. Thank you.