Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@wpgaurav
Created April 13, 2020 10:32
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 wpgaurav/c1b597a49980bc1d8a703171f60176d5 to your computer and use it in GitHub Desktop.
Save wpgaurav/c1b597a49980bc1d8a703171f60176d5 to your computer and use it in GitHub Desktop.
Custom Excerpt for MD theme
<?php function new_excerpt_more($more) {
global $post;
remove_filter('excerpt_more', 'new_excerpt_more');
return ' <a class="read-more" href="'. get_permalink($post->ID) . '">' . 'Read more &rarr;' . '</a>';
}
add_filter('excerpt_more','new_excerpt_more');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment