我想问一个简单的问题。我有两个网站在同一个域上运行。主页是完整的 HTML 格式,可以通过http://xyz.com/home访问,而对于内页,我已经在同一个域上安装了 wordpress,可以通过访问http:/访问页面/xyz.com/sample-page。现在我在 wordpress 中创建了一个页脚,它正确显示在运行 wordpress 的内页上,但我也想在我的 HTML 页面上显示同样的页脚,它没有运行 wordpress。为此,我在主页的 index.php 文件中添加了以下代码:
<footer>
<?php include '../wp-content/themes/metro/footer.php'; ?>
</footer>
这样做现在在主页上向我显示此错误:
Fatal error: Call to undefined function get_option() in /homepages/12/d378078258/htdocs/txtimpact-main/wp-content/themes/metro/footer.php on line 1
任何人都可以让我知道如何修改footer.php 文件,以便页脚开始出现在我的主页上。我在互联网上阅读了一个教程,该人告诉将这段代码添加到 footer.php 文件中,但对我来说没有帮助:
require( '../my_wordpress_install_root/wp-load.php' );
这是我的 footer.php 文件包含的代码:
<?php $options = get_option('metro'); ?>
</div><!--#page-->
</div><!--.container-->
</div>
<footer>
<div class="container">
<div class="footer-widgets">
<?php widgetized_footer(); ?>
<img style="position:absolute; visibility:show; left: -6px; top: 84px; } " src="http://cms.360ivr.com/wp-content/themes/metro/images/callout-bubble.png" width="22px" />
</div><!--.footer-widgets-->
</div><!--.container-->
<h12><?php mts_copyrights_credit(); ?></h12>
<div style="float: left; margin-top: 20px; margin-left: 153px;"><font size="2px">Copyright © 2006-12 TXTImpact - All Rights Reserved.<br/>Message and Data Rates may apply.<br/>To unsubscribe, text 'STOP' to 27126 or <a href="mailto:support@TXTimpact.com">Contact Support</a>.<br/><a href="http://www.wire2air.com/" target="_blank">Powered by Wire2Air</a><br/><a href="http://nytm.org/made/" target="_blank">Proudly Made In NYC</a></font></div>
<div style="margin-right: 83px; margin-top: 91px;"><img src="http://cms.360ivr.com/wp-content/uploads/2013/03/mma1.png" width="450px" align="right" /></div>
</footer><!--footer-->
<?php mts_footer(); ?>
<?php wp_footer(); ?>
</body>
</html>