将菜单添加到我的WordPress主题footer.php

时间:2016-08-17 06:58:41

标签: php html css wordpress

我试图在我的WordPress主题中添加自定义页脚,我上传了我的静态网站here,现在我尝试将其设置为动态,我将我的主菜单添加到WordPress但是我没有&#39 ;我知道如何在我的wordpress主题中添加页脚?

我是否必须制作另一个菜单并在此处使用

{{1}}

然后在function.php中注册它 或者它有另一种方式?

提前致谢!

1 个答案:

答案 0 :(得分:0)

更新了答案

您可能希望通过注册动态窗口小部件并在footer.php中显示来显示它:

注册页脚小部件

register_sidebar( array(
    'name' => 'footer Sidebar 1',
    'id' => 'footer-sidebar-1',
    'description' => 'Appears in the footer area',
    'before_widget' => '<aside id="%1$s" class=" %2$s">',
    'after_widget' => '</aside>',
    'before_title' => '<h4 class="widget-title">',
    'after_title' => '</h4>',
) );

显示页脚小部件

<div class="col-sm-3">
    <?php
        if(is_active_sidebar('footer-sidebar-1')){
            dynamic_sidebar('footer-sidebar-1');
        }
    ?>
</div>

然后在Dashboard Widget Menu中通过文本小部件添加自定义代码,放入footer-sidebar-1侧边栏。

希望它有效..