Skip to content

Instantly share code, notes, and snippets.

@landbryo
Last active May 24, 2018 16:17
Show Gist options
  • Select an option

  • Save landbryo/18526c6c0cbf5965047530e1647c55e7 to your computer and use it in GitHub Desktop.

Select an option

Save landbryo/18526c6c0cbf5965047530e1647c55e7 to your computer and use it in GitHub Desktop.
Custom WordPress excerpt length via functions.php
///////////////////////////
// CUSTOM EXCERPT LENGTH //
///////////////////////////
function custom_excerpt_length($length) {
return 40;
}
add_filter('excerpt_length', 'custom_excerpt_length');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment