WordPress 主题、侧边栏位置

发布于 2024-11-01 05:04:09 字数 659 浏览 2 评论 0原文

我购买了一个非 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

但可醉心 2024-11-08 05:04:09

根据我们所讨论的内容,我假设在页眉和页脚之间的某处调用了 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' .

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文