Advertisement
Viper007Bond

Untitled

Oct 30th, 2012
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function zfly9_custom_excerpt( $content ) {
  2.     if ( ! is_singular() ) {
  3.         $content = wp_trim_words( $content, 55 ) . ' <a class="more-link" href="' . esc_url( get_permalink() ) . '">Read more!</a>';
  4.     }
  5.  
  6.     return $content;
  7. }
  8. add_filter( 'the_content', 'zfly9_custom_excerpt' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement