WordPress 主题、侧边栏位置
我购买了一个非 WordPress 主题,目前正在适应 WordPress。我遇到的唯一问题是侧边栏的位置。由于某种原因,它加载在与主要内容相同的区域中。
头文件的结尾:
<!--Content Sec -->
<div id="content_sec1">
<!--Main Section-->
<div class="col1">
以及页脚文件的开头:
</div> <!--col1 end -->
<div class="col2">
<?php
/*
* Load the sidebar
*/
get_sidebar();
?>
</div>
如前所述,侧边栏加载到 col1 div 的末尾,而不是按应有的方式加载到 col2 div 中。 col2 div 保持为空。
有什么想法为什么会发生这种情况吗?
I bought a non-wordpress theme that I'm currently adapting to wordpress. The only problem I have is the location of the sidebar. It loads in the same area as the main content for some reason.
End of header file:
<!--Content Sec -->
<div id="content_sec1">
<!--Main Section-->
<div class="col1">
And the start of the footer file:
</div> <!--col1 end -->
<div class="col2">
<?php
/*
* Load the sidebar
*/
get_sidebar();
?>
</div>
As said the sidebar loads in the end of the col1 div instead of in the col2 div as it should. The col2 div remains empty.
Any ideas why this happens?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据我们所讨论的内容,我假设在页眉和页脚之间的某处调用了 get_sidebar() - 看看 single.php、page.php 等。或者只是在主题目录中运行 grep 并查看它在哪里:
grep -rn 'get_sidebar' 。
Based on what we've discussed, I assume that there is a call to get_sidebar() somewhere between header and footer - take a look at single.php, page.php, etc. Or just run a grep in the theme directory and see where it is:
grep -rn 'get_sidebar' .