Guest User

Untitled

a guest
Aug 15th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <?php
  2. /**
  3. * Add an excerpt more string to manually created excerpts.
  4. */
  5. function my_memberlite_manual_excerpt_more( $excerpt ) {
  6. $excerpt_more = '';
  7. if ( has_excerpt() ) {
  8. $excerpt_more = ' <a href="' . get_permalink( ) . '" rel="nofollow">(more...)</a></a>';
  9. }
  10. return $excerpt . $excerpt_more;
  11. }
  12. add_filter( 'get_the_excerpt', 'my_memberlite_manual_excerpt_more' );
Add Comment
Please, Sign In to add comment