Skip to content

Instantly share code, notes, and snippets.

@brycejacobson
Created July 18, 2013 20:35
Show Gist options
  • Save brycejacobson/6032842 to your computer and use it in GitHub Desktop.
Save brycejacobson/6032842 to your computer and use it in GitHub Desktop.
Add wrapper div to Soliloquy caption
<?php
//* Do NOT include the opening php tag
//* Add wrapper div to Soliloquy caption
add_filter( 'tgmsp_caption_output', 'tgm_custom_caption', 10, 3 );
function tgm_custom_caption( $output, $id, $image ) {
return '<div class="soliloquy-caption-wrapper"><div class="soliloquy-caption"><div class="soliloquy-caption-inside">' . do_shortcode( $image['caption'] ) . '</div></div></div>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment