如果在iframe中加载,删除内容?

时间:2015-05-11 20:19:42

标签: javascript php wordpress

我目前正在使用wordpress onepager,我想在iframe中打开所有wordpress帖子。这样可以正常工作,但页眉和页脚仍会显示在此iframe中。

在WordPress' single.php有这两行:

<? get_header(); ?>
<? get_footer(); ?>

如果我删除它们,页眉和页脚都不见了,这很好,但是一旦我直接打开链接而不是iframe,它看起来完全没有样式表,标题等。

是否有可能 - 可能使用php - 仅在网站加载到iframe时才删除这两行?

1 个答案:

答案 0 :(得分:1)

您在iframe中使用的网址: 我假设它会像single.php一样 将其更改为single.php?iframe = yes。

OR 如果你有single.php?id = what
然后将其更改为single.php?id = whatever&amp; iframe = yes

在single.php中使用

if (!isset($_GET["iframe"]) get_header();
if (!isset($_GET["iframe"]) get_footer();