Skip to content

Instantly share code, notes, and snippets.

@tomhemsley
Created April 21, 2015 13:18
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 tomhemsley/94ba5a950635c9bf9c85 to your computer and use it in GitHub Desktop.
Save tomhemsley/94ba5a950635c9bf9c85 to your computer and use it in GitHub Desktop.
/**
* Adds a {comment_count} template tag to Meta Slider Post Feed captions
*/
function metaslider_comment_count($content) {
$content = str_replace( "{comment_count}", comments_number() , $content );
return $content;
}
add_filter( "metaslider_post_feed_template", "metaslider_comment_count" );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment