function genesis_do_author_title_description() { if ( ! is_author() ) { return; } $heading = get_the_author_meta( 'headline', (int) get_query_var( 'author' ) ); if ( empty( $heading ) && genesis_a11y( 'headings' ) ) { $heading = get_the_author_meta( 'display_name', (int) get_query_var( 'author' ) ); } $intro_text = get_the_author_meta( 'intro_text', (int) get_query_var( 'author' ) ); $intro_text = apply_filters( 'genesis_author_intro_text_output', $intro_text ?: '' ); /** This action is documented in lib/structure/archive.php */ do_action( 'genesis_archive_title_descriptions', $heading, $intro_text, 'author-archive-description' ); }