Hi guys,
how can I change the naming of the “home” link in the breadcrumbs to whatever I like in a child theme
So maybe “You are here: Some Name / Page 2”
Instead of “You are here: Home / Page 2”
Thanks in advance
Michael
Hi Michael!
Please add following code to Functions.php file of your child theme and adjust as needed
add_filter('avia_breadcrumbs_args', 'avia_change_home_breadcrumb', 10, 1);
function avia_change_home_breadcrumb($args){
$args['show_home'] = 'Some Name';
return $args;
}
Cheers!
Yigit
Thanks. That worked