public function get_output( $args = [] ) { /** * Filter the Genesis breadcrumb arguments. * * @since 1.5.0 * * @param array $args { * Arguments for generating breadcrumbs. * * @type string $home Homepage link text. * @type string $sep Separator. * @type string $list_set List format separator. * @type string $prefix Prefix before breadcrumb list. * @type string $suffix Suffix after breadcrumb list. * @type bool $heirarchial_attachments Whether attachments are hierarchical. * @type bool $heirarchial_categories Whether categories are hierarchical. * @type array $labels Labels including the following keys: 'prefix', 'author', 'category', * 'tag', 'date', 'search', 'tax', 'post_type', '404'. * } */ $this->args = apply_filters( 'genesis_breadcrumb_args', wp_parse_args( $args, $this->args ) ); return $this->args['prefix'] . $this->args['labels']['prefix'] . $this->build_crumbs() . $this->args['suffix']; }