Hey @jins8,
have a look at my comment here. Instead of array_pop
(which removes the last item of an array) you can use array_shift
to remove the first item.
add_filter( 'bricks/breadcrumbs/items', function( $breadcrumb_items ) {
array_shift( $breadcrumb_items );
return $breadcrumb_items;
} );
Best,
André