I am using this cool plugin that works very well, but I need to alter it to exclude a single wordpress page. Can anyone help?
here is the code from the plugin
*/
function break_out_of_frames()
{
print <<<JS
<script language="JavaScript" type="text/javascript">
/*<![CDATA[*/
if (top.location != self.location) top.location.replace(self.location);
/*]]>*/
</script>
JS;
}
add_action('wp_head', 'break_out_of_frames');
?>