Guest User

Untitled

a guest
Nov 22nd, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. function excerpt_length( $length ) {
  2. return 28;
  3. }
  4.  
  5. function excerpt_more_link( $more ) {
  6. global $post;
  7. $link = get_permalink( $post->ID );
  8. return "<a href=$link class='more-link'>Find out more...</a>";
  9. }
  10.  
  11. add_filter( 'excerpt_length', 'excerpt_length', 999 );
  12. add_filter( 'excerpt_more', 'excerpt_more_link', 999 );
  13.  
  14. <article class="<?php echo $classes; ?>">
  15.  
  16. <h2>
  17. <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
  18. </h2>
  19.  
  20. <p class="excerpt"><?php echo get_the_excerpt(); ?></p>
  21.  
  22. </article>
Add Comment
Please, Sign In to add comment