php – Add 2 links in between the navigation using the Breadcrumb Navxt plugin hook
Question
I am using the Breadcrumb NavXT Plugin.
I have 2 links at a page, and want to add 2 more links in between on that specific page.
I used the below hook, but did not get the result.
add_filter('bcn_breadcrumb_title', 'my_breadcrumb_title', 3, 10);
function my_breadcrumb_title($title, $type, $id)
{
if(in_array('post-page', $type) && get_post_meta($id, 'last_breadcrumb_title', true)) {
$title = get_post_meta($id, 'last_breadcrumb_title', true)
}
return $title;
}
0
2 weeks
2023-09-16T04:56:55-05:00
2023-09-16T04:56:55-05:00 0 Answers
0 views
0
Leave an answer