Created
May 27, 2013 01:52
-
-
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…
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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