Skip to content

Instantly share code, notes, and snippets.

@MikeiLL
Created June 5, 2017 15:56
Show Gist options
  • Select an option

  • Save MikeiLL/9d3df7ef4bf608c606ccc0fbb22b4392 to your computer and use it in GitHub Desktop.

Select an option

Save MikeiLL/9d3df7ef4bf608c606ccc0fbb22b4392 to your computer and use it in GitHub Desktop.
/**
* Generate single crumb html
*
* @since 3.6.0
*/
public static function get_crumb_html( $label, $link, $class = '', $rel = '' ) {
$scope = self::get_scope();
$class = $class ? ' class="'. esc_attr( $class ) .'"': '';
$rel = $rel ? ' rel="'. esc_attr( $rel ) .'"': '';
return '<span '. $scope . $class . $rel .'><a href="'. esc_url( $link ) .'" title="'. esc_attr( $label ) .'" itemprop="url" content="'. esc_url( $link ) .'"><span itemprop="title">'. esc_html( $label ) .'</span></a></span>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment