我可能错过了一些东西,但我一直在努力弄清楚什么,我没有运气。 我在wordpress网站上添加了一个新的页面模板,创建了一个新的小部件区域(这是原始设计师构建网站的必要条件)。 但是,该页面似乎是从另一个小部件区域调用内容。 有问题的页面是http://www.haylockpittman.co.uk/builders-painters-decorators-and-refurbishment-contractors-surrey/,它似乎是调用小部件区域“New Paint”,尽管代码要求“paint surrey”包含小部件区域的正确文本。 请注意,小部件区域基本上是页面的下半部分。
我希望有人能够帮助我解决这个问题。
由于
答案 0 :(得分:0)
As you have created a separate sidebar, now you must be seeing that in your admin panel.
So just add the widgets you want to appear in the sidebar.
Next go to your sidebar.php page, there you cana put a condition i.e. for the products page
If your products page is a separate template then use the name of the file i.e.
if ( is_page_template('your-template.php') ) {
register_sidebr('name of the sidebar');
} else {
register_sidebr('name of the sidebar');
}