Closed srcek closed 1 week ago
It's technically already an option on the PHP side and can be changed with a filter:
add_filter('x3p0/breadcrumbs/builder/config', function($options) {
$options['labels']['home'] = 'Custom Home Label';
return $options;
});
This should be relatively easy to implement as a block option since the underlying feature is already there. Adding it to the to-do list.
Your code worked perfectly - thank you so much! I'm excited to see this feature implemented as a UI block option.
Hi,
It would be ideal if I could change the default "Home" label to the actual homepage name or to a custom label of my choice.
Thanks.