I tried iBox demo. I don’t see what it is really doing. What i need is something similar to:
http://www.ecolemusiquematane.com/profs.html
and click on people name.
I could do one HTML page for each Page but i’d like to load regular WP Page into popup like on this website. I want to do it only with selected Page.
Try this:
<?php
$toto = get_the_title($post->post_parent);
if(get_the_title($post->post_parent) != the_title(‘ ‘ , ‘ ‘,false))
{
echo $toto;
}
?>