wzkb_breadcrumb_items
Filters the breadcrumb items before they are rendered.
Type: filter
Since: 3.0.0
Source: includes/frontend/class-breadcrumbs.php line 212
Parameters
| Type | Name | Description |
|---|---|---|
array |
$items |
Array of breadcrumb items, each with url, label, position and current keys. |
array |
$args |
Parameters array. |
Usage
add_filter( 'wzkb_breadcrumb_items', function($items, $args) {
// ...
return $items;
} );