Skip to content

Instantly share code, notes, and snippets.

@epierpont
Last active August 29, 2015 14:16
Show Gist options
  • Save epierpont/46d5859f0834ca9c30d6 to your computer and use it in GitHub Desktop.
Save epierpont/46d5859f0834ca9c30d6 to your computer and use it in GitHub Desktop.
WP Function - Get author bio excerpt
<?php
function author_excerpt() {
$word_limit = 45;
$txt_end = '...';
$author_desc = explode( ' ', get_the_author_meta( 'description' ) );
$author_desc_short = array_slice( $author_desc, 0, ( $word_limit ) );
return ( implode( $author_desc_short, ' ' ) ) . $txt_end;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment