Created
March 11, 2017 10:22
-
-
Save evrpress/07d5500a0c56cd57984d4d0551138ce5 to your computer and use it in GitHub Desktop.
Set Excerpt Length in Mailster
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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