现在显示WordPress iframe内容

时间:2017-06-09 10:56:18

标签: wordpress iframe

我正在尝试显示一些WP内容,但只显示静态文本。没有WP内容出现。 看起来没有加载WP脚本查看Dev Tools源代码?

对于我错过的任何帮助都非常感谢。

这是我在page.php中的电话:

<iframe src="http://www.xxxxxx.com/wp-content/themes/themename/iframe-gview.php" width="100%" height="500" frameBorder="0"></iframe>

我的php模板代码:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Applications</title>
<?php wp_head(); ?>
</head>
<body>
<link rel="stylesheet" type="text/css" href="http://www.xxxxxx.com/wp-content/themes/themename/assets/css/style.css">

    Static Content

    <?php
        echo do_shortcode('[gravityview id="1234"]');
    ?>

<?php wp_footer(); ?>   
</body>
</html>

1 个答案:

答案 0 :(得分:0)

正如上面提到的@vel,这解决了我的问题:

<?php require_once('../../../wp-load.php'); ?>