how to add custom breadcrumbs in wordpress?
Question
I need a custom breadcrumb for my account page.Can we do it via functions.php ?
add_filter('theme_breadcrumb_args_filter', 'customize_separator_breadcrumbs');
function customize_separator_breadcrumbs($args) {
$args['sep'] = ' >> ';
return $args;
}
0
2 months
0 Answers
16 views
0
Leave an answer
You must login or register to add a new answer .