Last active
August 29, 2015 14:04
-
-
Save amitabhaghosh197/43b2d86e6cda19e55f12 to your computer and use it in GitHub Desktop.
Bootstrap Modal
This file contains hidden or 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
<div class=" modal hide fade" id="myModal" > | |
<div class="modal-header"> | |
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> | |
</div> | |
<div class="modal-body"> | |
<?php | |
$args = array( | |
'post_type' => 'pop-ups', | |
'order' => 'DESC', | |
); | |
$the_query = new WP_Query( $args ); | |
if($the_query->have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); ?> | |
<div > | |
<!---<div style="width:100%;"> <img src="<?php //echo wp_get_attachment_url(get_post_thumbnail_id($post->ID,'')); ?>"></div>---> <p><?php the_title(); ?></p> | |
<p><?php the_content() ;?></p> | |
</div> <!------/.students-quotes 1------------------------> | |
<?php wp_reset_postdata(); ?> | |
<?php endwhile; ?> | |
<?php endif; ?> | |
</div> | |
<div class="modal-footer"> | |
<a href="#" class="btn" data-dismiss="modal" aria-hidden="true">Close</a> | |
</div> | |
</div> |
This file contains hidden or 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
//Since My Modal is window on load so add | |
jQuery(window).load(function($){ | |
jQuery('#myModal').modal('show', function(e){ | |
if(!data) return e.preventDefault(); | |
} ); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment