Skip to content

Instantly share code, notes, and snippets.

@Shelob9
Created May 27, 2013 01:52
Show Gist options
  • Save Shelob9/5654800 to your computer and use it in GitHub Desktop.
Save Shelob9/5654800 to your computer and use it in GitHub Desktop.
For triggering reveal modals from Foundation 4 in WordPress. I'm using this to pop post content out of the post list. Add reveal_trigger() to the container who's links will trigger the reveal modal inside the loop. This is probably <article>. Use reveal_content() at the end of the loop. It calls a template part for the content of the modal. I cr…
function reveal_trigger() {
$id = get_the_id();
$modalID = 'mod'.$id;
echo 'data-reveal-id="'.$modalID.'"';
}
function reveal_content($size, $part1, $part2) {
$id = get_the_id();
$modalID = 'mod'.$id;
echo '<div id="'.$modalID.'" class="reveal-modal '.$size.'">';
get_template_part($part1, $part2);
echo '</div>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment