Ticket for: Breadcrumb
0
Alan
Please tell me how I can direct my Home breadcrumb to the main domain instead of a page number
2 Subscribers


Submit Answer
1 Answers
Best Answer
0

Welcome to our forum.
you can use filter hook to do this.
https://pickplugins.com/documentation/breadcrumb/filter-hooks/breadcrumb_items_array/
Please add following code to your theme functions.php file
add_filter('breadcrumb_items_array','breadcrumb_items_array'); function breadcrumb_items_array($breadcrumb_items){ $breadcrumb_items[1] = array ( 'link' => 'http://yoursite.com/custom-url', 'title' => 'Home', 'location' => 'is_page', ); return $breadcrumb_items; }