0

我想我的问题很简单,即使我似乎无法解决这个问题。我正在使用一些 iframe,当我将其制作成 wordpress 页面模板而不是纯 html 时,页面上的弹出窗口在页面加载后立即开始弹出。我该如何防止这种情况?

谢谢!

页面模板:

<?php
/*
Template Name: Klasseforside
*/
?>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

        <link rel="stylesheet" type="text/css" href="https://dl.dropbox.com/u/3171189/Klassekampen/klassekampen.css" />

    </head>
    <body class="iframe" style="background-color:transparent; background-image:none; position:relative;">


<div >
<div >
<?php if (have_posts()) : while (have_posts()) : the_post();?>
<div>
<h2 style="margin-bottom:-20px; margin-left:47px;" id="post-<?php the_ID(); ?>"><?php the_title();?></h2>
<?php the_content('<p class="serif">Read the rest of this page »</p>'); ?>
</div>
<?php endwhile; endif; ?>
</div>
</div>
4

0 回答 0