You appear to be a bot. Output may be restricted
Description
Add schema markup attributes for breadcrumb link element.
Usage
$array = breadcrumb_link( $attributes, $context, $args );
Parameters
- $attributes
- ( array ) required – Existing attributes for breadcrumb link element.
- $context
- ( string ) required – Not used. Markup context (ie. `footer-widget-area`).
- $args
- ( array ) required – Markup arguments.
Returns
array Amended attributes for breadcrumb link element.
Source
File name: genesis/lib/functions/schema.php
Lines:
1 to 6 of 6
function breadcrumb_link( $attributes, $context, $args ) { $attributes['itemprop'] = 'item'; return $attributes; }