How to customize breadcrumbs NavXT

I’m installed breadcrumb-navxt for wordpress and it works. But I dont understand how can I customize a clickable links in a breadcrumb path. E.g. I’ve breadcrumb path: Main>>News>>Latest_news in which Main and News are clickable. So I want to modify News to Hot News and change hyper reference of News only for this path. How can I do that?

Related posts

Leave a Reply

1 comment

  1. add_action('bcn_after_fill', function($bcn_breadcrumb_trail){
        // modify $bcn_breadcrumb_trail->breadcrumbs array of bcn_breadcrumb objects as needed  
    });