Skip to content

Instantly share code, notes, and snippets.

@esedic
Created July 22, 2025 08:42
Show Gist options
  • Save esedic/f91b45e1c755d6c9689c93cb421d774a to your computer and use it in GitHub Desktop.
Save esedic/f91b45e1c755d6c9689c93cb421d774a to your computer and use it in GitHub Desktop.
Fix home page URL for non-default languages Breadcrumb NavXT and Polylang
<?php
add_action('bcn_after_fill', function($bcn_breadcrumb_trail){
foreach ($bcn_breadcrumb_trail->breadcrumbs as $index => $value){
if(in_array('home',$bcn_breadcrumb_trail->breadcrumbs[$index]->get_types())){
$bcn_breadcrumb_trail->breadcrumbs[$index]->set_url( pll_home_url());
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment