Skip to content

Instantly share code, notes, and snippets.

@jamiemarsland
Last active March 29, 2017 07:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamiemarsland/c82f1489ce572d614cf206deb87f854a to your computer and use it in GitHub Desktop.
Save jamiemarsland/c82f1489ce572d614cf206deb87f854a to your computer and use it in GitHub Desktop.
Add a read more link to the excerpt in blog posts when using pootle pagebuilder pro
add_filter( 'get_the_excerpt', function( $excerpt ) {
return
substr( $excerpt, 0, 230 ) .
' <a class="more" href="' . get_the_permalink() . '">More</a>';
}, 9999 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment