我在论文主题文件夹中创建了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>
答案 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');