Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Grab First Paragraph Of Text And Ignore Images For Excerpt
- function awesome_excerpt($text, $raw_excerpt) {
- if( ! $raw_excerpt ) {
- $content = apply_filters( 'the_content', get_the_content() );
- $text = substr( $content, 0, strpos( $content, '</p>' ) + 4 );
- }
- $text = preg_replace("/<img[^>]+\>/i", "", $text);
- return $text;
- }
- add_filter( 'wp_trim_excerpt', 'awesome_excerpt', 10, 2 );
- // Customize Excerpt Word Count Length
- function custom_excerpt_length() {
- return 25;
- }
- add_filter('excerpt_length', 'custom_excerpt_length', 999);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement