wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



block_core_breadcrumbs_items › WordPress Filter Hooks

Seit7.0.0
Veraltetn/v
apply_filters( 'block_core_breadcrumbs_items', $breadcrumb_items )
Parameter:
  • () breadcrumb_items { Array of breadcrumb item data. @type string $label The breadcrumb text. @type string $url Optional. The breadcrumb link URL. @type bool $allow_html Optional. Whether to allow HTML in the label. When true, the label will be sanitized with wp_kses_post(), allowing only safe HTML tags. When false or omitted, all HTML will be escaped with esc_html(). Default false. }
    Erforderlich: Ja
Definiert in:
Codex:

Filters the breadcrumb items array before rendering.

Allows developers to modify, add, or remove breadcrumb items.




Quellcode

$breadcrumb_items = apply_filters( 'block_core_breadcrumbs_items', $breadcrumb_items );