/ Published in: PHP
URL: http://wordpress.org/support/topic/227692
Thanks to LenK on the WP forums.
Expand |
Embed | Plain Text
remove_filter('get_the_excerpt', 'wp_trim_excerpt'); add_filter('get_the_excerpt', 'custom_trim_excerpt'); function custom_trim_excerpt($text) { // Fakes an excerpt if needed global $post; if ( '' == $text ) { $text = get_the_content(''); $text = apply_filters('the_content', $text); $excerpt_length = x; } } return $text; }
You need to login to post a comment.
