Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Reveal Modal

Foundation 5 Reveal Modal

// Add Shortcode
function reveal_modal( $atts , $content = null ) {

	// Attributes
	extract( shortcode_atts(
		array(
			'revealid' => 'myModal',
			'title' => '',
			'Trigger' => '',
		), $atts )
	);

	// Code
return '<a href="#" class="button btnmain" data-reveal-id="' . $revealid . '">' . $trigger . '</a><div id="' . $revealid . '" class="reveal-modal" data-reveal aria-labelledby="modalTitle" aria-hidden="true" role="dialog"><h2 id="modalTitle">'. $title .'</h2>' . do_shortcode($content) . '<a class="close-reveal-modal" aria-label="Close">×</a></div>';
}
add_shortcode( 'reveal-modal', 'reveal_modal' );