在wordpress论文主题中创建footer.php

时间:2013-01-22 11:48:27

标签: php wordpress wordpress-thesis-theme

我在论文主题文件夹中创建了footer.php文件,但主题并没有拉出那些内容,所以如何访问我的页脚区域中的footer.php文件的内容。

<div id="footer">
<div class="container clearfix">
    <div class="footer-widget widget_text" id="text-10">
    <h4 class="widgettitle" style="text-indent: 0px;">
 <cufontext>About </cufontext><cufontext>Liveagl.com</cufontext></h4>                             

1 个答案:

答案 0 :(得分:1)

您需要使用论文页脚覆盖自定义页脚。

您可以在function.php文件中添加以下代码来完成此操作。

remove_action('thesis_hook_footer', 'thesis_attribution');
function my_custom_footer() {
  //Your custome footer code goes here
}
add_action('thesis_hook_footer', 'my_custom_footer');

参考:http://thesistutor.com/how-to-change-the-footer-content/