Tagged: Breadcrumb title, custom taxonomy
Hi,
How can I change the breadcrumb title in this page “Custom Taxonomy “? I want to put the page title as the breadcrumb title.
Regards,
panda
Hey panda,
Thanks for contacting us!
Please add following code to bottom of functions.php file of your child theme
add_filter('avf_title_args', 'av_custom_tax_title', 10, 2);
function av_custom_tax_title($args,$id)
{
if ('is_tax')
{
$args['title'] = get_the_title($id);
$args['link'] = get_permalink($id);
$args['heading'] = 'h1';
}
return $args;
}
Best regards,
Yigit
Hi,
Unfortunately it does not work like how I wanted, on this page Custom Taxonomy Page (see screenshot) the breadcrumbs title will become the product that this taxonomy term is attached to.
Regards,
panda