Skip to content

trepmal.com

  • Home
  • Plugins
  • Github
  • Me on WP.org
  • Donate

Categories

  • WordPress Bits (149)
  • Uncategorized (11)
  • Scripts (5)
  • Tidbits (5)
  • Fun (3)

Tags

  • wordpress (30)
  • administration (16)
  • plugin (9)
  • free download (8)
  • functions.php (8)

Year

  • 2018 (8)
  • 2016 (2)
  • 2015 (4)
  • 2014 (19)
  • 2013 (11)

Filter Hook: excerpt_more

Custom “More” to Follow Excerpts

If you’re not a fan of ” […]” or “… Continue reading →” you can easily setup your own “more” text.

add_filter( 'excerpt_more', 'dot_dot_dot', 11 );
function dot_dot_dot( $more ) {
    return '... <a href="'. get_permalink() .'" class="keep_reading">Continue reading &raquo;</a>';
}
Posted on April 28, 2011March 1, 2012Categories WordPress BitsTags excerptLeave a comment on Custom “More” to Follow Excerpts
Proudly powered by WordPress