我在一个PHP文件中有一些内容,该文件设计为位于另一个页面上的iframe中。PHP文件非常简单--现在它是完整的:
<div class="content-tos">
<?php
// get the terms of service from other page
$getpage = get_page_by_path(\'/terms-of-service\');
echo apply_filters(\'the_content\', $getpage->post_content);
?>
</div>
显然,我需要在这些代码行之上包含一些内容,以便PHP能够访问Wordpress的核心功能(如
get_page_by_path()
)... 但如果我使用
get_header()
我得到了我的整个标题、导航栏、Google Analytics跟踪代码等,然后出现在iframe中,这是我绝对不想要的。
Wordpress中有没有一种方法可以进行某种包含,它可以为我提供基本的Wordpress API,但不会从header.php
文件