Skip to content

Instantly share code, notes, and snippets.

@ovizii
Created August 4, 2013 09:48
Show Gist options
  • Select an option

  • Save ovizii/6149906 to your computer and use it in GitHub Desktop.

Select an option

Save ovizii/6149906 to your computer and use it in GitHub Desktop.
Change excerpt length depending on category
add_filter('excerpt_length', 'my_excerpt_length');
function my_excerpt_length($length) {
if(in_category(14)) {
return 13;
} else {
return 60;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment