Written in response to Wordpress Bootstrap Modal:
yes it is possible
use this
use this
<?php
$post_id = $_GET['ID'];
wp_reset_query();
query_posts('p='.$post_id.'&posts_per_page=1');
while (have_posts()): the_post();
the_title();
the_content();
endwhile;
?>
Updated: 01/23/13 12:40pm

