You appear to be a bot. Output may be restricted
Description
Return the author archive crumb.
Usage
$string = Genesis_Breadcrumb::get_author_crumb();
Parameters
Returns
string HTML markup for an author archive breadcrumb.
Source
File name: genesis/lib/classes/class-genesis-breadcrumb.php
Lines:
1 to 17 of 17
protected function get_author_crumb() { global $wp_query; $crumb = $this->args['labels']['author'] . esc_html( $wp_query->queried_object->display_name ); /** * Filter the author archive breadcrumb. * * @since 1.9.0 * * @param string $crumb HTML markup for the author archive crumb. * @param array $args Arguments used to generate the breadcrumbs. Documented in Genesis_Breadcrumbs::get_output(). */ return apply_filters( 'genesis_author_crumb', $crumb, $this->args ); }