Skip to content

Instantly share code, notes, and snippets.

@richerimage
Created May 4, 2016 14:32
Show Gist options
  • Save richerimage/9804d8f3212fc3ef726983b785280da2 to your computer and use it in GitHub Desktop.
Save richerimage/9804d8f3212fc3ef726983b785280da2 to your computer and use it in GitHub Desktop.
conditional_excerpt_length
add_filter( 'excerpt_length', 'conditional_excerpt_length' );
function conditional_excerpt_length($length) {
if ( is_front_page() )
return 80; // Change value as desired
else
return $length;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment