Skip to content

Instantly share code, notes, and snippets.

@gabydevdev
Created January 15, 2015 19:25
Show Gist options
  • Select an option

  • Save gabydevdev/e9e458f2c10da1c5b3bb to your computer and use it in GitHub Desktop.

Select an option

Save gabydevdev/e9e458f2c10da1c5b3bb to your computer and use it in GitHub Desktop.
WP Custom Excerpt
<?php
// You can add this in your function.php file to modify the Wordpress Excerpt
if ( !function_exists( 'theme_excerpt_length' ) ) :
function theme_excerpt_length( $length ) {
return 40;
}
endif;
if ( !function_exists( 'theme_excerpt_more' ) ) :
function theme_excerpt_more( $more ) {
return '...';
}
endif;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment