Skip to content

Instantly share code, notes, and snippets.

@jpmarchand
Last active September 27, 2016 16:10
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 jpmarchand/5910ad2199792075e876 to your computer and use it in GitHub Desktop.
Save jpmarchand/5910ad2199792075e876 to your computer and use it in GitHub Desktop.
Change excerpt length of WordPress posts. Source: http://my.studiopress.com/snippets/post-excerpts/
<?php
//* Change excerpt length of WordPress posts
function customprefix_excerpt_length($length) {
return 50; // pull first 50 words
}
add_filter('excerpt_length', 'customprefix_excerpt_length');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment