Tagged: breadcrumb, change, heading
Dear all,
I am looking for a way to come to a solution which was described in this topic.
But I am using a child-theme and wonder if it is possible to change the breadcrumb heading from h1 to span within my child-theme functions.php.
Kind regards!
Hey Simon!
Thank you for using Enfold.
Add this to the functions.php file:
add_filter( 'avf_title_args', 'enfold_customization_change_title_heading' );
function enfold_customization_change_title_heading( $args ) {
$args['heading'] = 'span';
return $args;
}
Regards,
Ismael
Dear Ismael,
thank you for your support. Issue solved!
Have a nice day!