Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #280441

    Is there a simple way or place to look to remove the Home or Homepage from the breadcrumb trail?

    Currently I have:
    Home ‹ About Us ‹ Person Name

    And wish to have:

    About Us ‹ Person Name

    Thanks in advance. -Raleigh

    #280500

    Hi pageladder!

    Please add following code to Functions.php file in Appearance > Editor

    add_filter('avia_breadcrumbs_args', 'avia_change_home_breadcrumb', 10, 1);
    function avia_change_home_breadcrumb($args){
     $args['show_home'] = false;
    return $args;
    }

    Regards,
    Yigit

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.