-
Hi – I have one specific category where I would like the breadcrumb category link to go to a specific page rather than the category.
I spotted this ticket https://support.rankmath.com/ticket/how-to-change-link-on-breadcrumbs/ and I modified the code accordingly but it doesn’t work (it works without the IF statement that I added, so I assume I’ve got that part wrong). Could you tell me the correct code please.
/** * Allow changing or removing the Breadcrumb items * * @param array $crumbs The crumbs array. * @param Breadcrumbs $this Current breadcrumb object. */ if ( in_category('alternatives') ) { add_filter( 'rank_math/frontend/breadcrumb/items', function( $crumbs, $class ) { $crumbs[1][1] = '/alternatives'; // Add the desired URL return $crumbs; }, 10, 2); }
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
You must be logged in to reply to this ticket.