Don't like ads? PRO users don't see any ads ;-)
Guest

excerpt more

By: samikeijonen on Apr 25th, 2012  |  syntax: PHP  |  size: 0.37 KB  |  hits: 23  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. /* Excerpt ending */
  2.         add_filter( 'excerpt_more', 'origin_child_excerpt_more', 11 );
  3.  
  4. /**
  5.  * Excerpt ending
  6.  *
  7.  */
  8. function origin_child_excerpt_more( $more ) {
  9.  
  10.         $more = '... <a class="more-link" href="' . get_permalink() . '" title="' . the_title_attribute('echo=0') . '">  ' .
  11.          __( 'Continue reading &rarr;', 'origin-child' ) . ' </a></p>';
  12.         return $more;
  13. }