Created
April 29, 2011 19:54
-
-
Save chasereeves/948919 to your computer and use it in GitHub Desktop.
Custom Excerpt length & words
This file contains 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
//=========================================================== CUSTOM EXCERPT LENGTH & WORDS | |
function no_ellipsis($text) { | |
global $post; | |
return str_replace('[...]', '… <span class="read_more"><a href="' . get_permalink($post->ID) . '">Read More »</a></span>', $text); | |
} | |
add_filter('the_excerpt', 'no_ellipsis'); | |
function new_excerpt_length($length) { return 20; } | |
add_filter('excerpt_length', 'new_excerpt_length'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment