Skip to content

Instantly share code, notes, and snippets.

@sagarjadhav
Created March 8, 2017 07:40
Show Gist options
  • Save sagarjadhav/fa780b0f3fa118db8a6b2844ed09e82f to your computer and use it in GitHub Desktop.
Save sagarjadhav/fa780b0f3fa118db8a6b2844ed09e82f to your computer and use it in GitHub Desktop.
Limit the wp excerpt
<?php
/* !
* Function to trim excerpt
*/
if ( !function_exists( 'limit_excerpt' ) ) {
function limit_excerpt( $lenght, $text ) {
$content = substr( $text, 0, $lenght );
if ( strlen( $content ) < strlen( $text ) ) {
$content = $content . '&hellip;';
}
echo $content;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment