Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save nathaningram/7788d22ab3a99648bcc4 to your computer and use it in GitHub Desktop.

Select an option

Save nathaningram/7788d22ab3a99648bcc4 to your computer and use it in GitHub Desktop.
// Change Read More Text in Excerpt
function et_excerpt_length($length) {
return 30;
}
add_filter('excerpt_length', 'et_excerpt_length');
/* Add link to end of excerpt in a div for styling */
function et_excerpt_more($more) {
global $post;
return '<span class="view-full-post"><span style="padding:0 5px 0 10px;">&mdash;</span><a href="'. get_permalink($post->ID) . '" class="view-full-post-btn">View Full Article</a></span>';
}
add_filter('excerpt_more', 'et_excerpt_more');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment