我有一个使用html / css / php的现有网站。我已将WordPress博客集成到该网站,并希望使用我现有网站的页脚和标题包含。
www.existingsite.com/blog
我的文件夹结构是在单独的文件夹中使用我的WordPress博客设置的。
existingsite_root -> blog -> index.php
existingsite_root -> inc --> footer.inc
在我的博客索引中,如何在代码中添加一层来调用现有网站的页脚?
我试过这个:
<?php require( dirname( __FILE__ ) . '../inc/footer.inc.php'); ?>
但是,因为这是一个字符串../
作为文本附加,而不是指示从我的inc文件夹中获取页脚文件。