Skip to content

Instantly share code, notes, and snippets.

@evrpress
Created March 11, 2017 10:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save evrpress/07d5500a0c56cd57984d4d0551138ce5 to your computer and use it in GitHub Desktop.
Save evrpress/07d5500a0c56cd57984d4d0551138ce5 to your computer and use it in GitHub Desktop.
Set Excerpt Length in Mailster
function mailster_custom_excerpt_length( $length ) {
return 20;
}
add_filter( 'mailster_excerpt_length', 'mailster_custom_excerpt_length', 999 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment