Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #270508

    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

    #270555

    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

    #271084

    Thanks. That worked

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Breadcrumbs: Change the naming of the "Home" link’ is closed to new replies.