Skip to content

Instantly share code, notes, and snippets.

@farinspace
Created June 23, 2016 00:58
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save farinspace/c194c1f76fa699b12afef6ac405d9233 to your computer and use it in GitHub Desktop.
Save farinspace/c194c1f76fa699b12afef6ac405d9233 to your computer and use it in GitHub Desktop.
Adding additional content to the post excerpt
<?php
add_filter( 'get_the_excerpt', 'my_get_the_excerpt' );
function my_get_the_excerpt( $excerpt ) {
if ( 'nooz_coverage' == get_post_type() ) {
$excerpt .= ' &mdash; View more coverage at <a href="http://example.com">http://example.com</a>.';
}
return $excerpt;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment