Skip to content

Instantly share code, notes, and snippets.

@barrykooij
Created November 16, 2014 19:26
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 barrykooij/c50c676ae6d08d096f1c to your computer and use it in GitHub Desktop.
Save barrykooij/c50c676ae6d08d096f1c to your computer and use it in GitHub Desktop.
Related Posts for WordPress Change Excerpt Length
<?php
function rp4wp_change_post_excerpt_length( $excerpt_length ) {
return '10';
}
add_filter( 'rp4wp_general_post_excerpt_length', 'rp4wp_change_post_excerpt_length' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment