截至目前,我在我的 Wordpress 主题的模板之一中有此代码。
// blah blah
<div class="content">
<?php include_once( 'http://www.website.com/new/file.php?variable=1' ); ?>
</div>
// blah blah
现在,它将加载此模板中的所有内容,除了这个 php 包含!它将加载包含在 /* blah blah */ 上方的侧边栏,并将加载页脚、导航等。
当我在 Google Chrome 上检查元素时,它显示:
<div class="content">
(it's empty)
</div>
如果你知道我做错了什么,请帮助我!谢谢!