Skip to content

Instantly share code, notes, and snippets.

@polevaultweb
Created February 5, 2016 18:05
Show Gist options
  • Save polevaultweb/f76843f46c91ba455e89 to your computer and use it in GitHub Desktop.
Save polevaultweb/f76843f46c91ba455e89 to your computer and use it in GitHub Desktop.
add_filter( 'igp_template_caption_no_tags', 'my_igp_template_caption_no_tags' );
function my_igp_template_caption_no_tags( $caption ) {
$caption_parts = explode( '&&', $caption );
return $caption[0];
}
add_filter( 'igp_template_caption', 'my_igp_template_caption' );
function my_igp_template_caption( $caption ) {
$caption_parts = explode( '&&', $caption );
return $caption[1];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment