x3p0-dev / x3p0-breadcrumbs

Breadcrumbs block for WordPress.
GNU General Public License v3.0
36 stars 2 forks source link

Change the default "Home" label #10

Closed srcek closed 1 week ago

srcek commented 1 week ago

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.

justintadlock commented 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.

srcek commented 1 week ago

Your code worked perfectly - thank you so much! I'm excited to see this feature implemented as a UI block option.