0

I'm working on my client's website and i have to add custom footer to the theme.

http://businessumpire.com/

The theme doesn't allow to add widget in the footer, is there any way to to add widget in 4 blocks so i can add menu, latest post etc in the footer via widgets.

4

1 回答 1

3

你应该这样做覆盖主题,甚至更好地制作一个子主题。然后,您应该使用register_sidebar()wordpress 功能为您的页脚注册一个侧边栏,并通过在页脚模板中调用它dynamic sidebar()。这样您就可以将所有可用的小部件添加到您的页脚。要在页脚中添加菜单,您可以调用wp_nav_menu()footer`。如果您不知道如何执行此操作,您可以尝试下载具有此功能的主题并尝试从那里调整您的代码。

于 2013-09-06T15:06:17.530 回答