-1

我是 WordPress 的新手。我想做two sidebars。一个在 中left,另一个在 中right hand side。我想使用twenty-eleven主题然后customise那个。因此,任何帮助都将是非常可观的。

4

3 回答 3

2

非常简单易行的方法,首先制作一个带有两个侧边栏的设计,一个在左侧,一个在右侧,然后在左右侧栏上调用特定的小部件。

<?php dynamic_sidebar (''WIDGET AREA NAME); ?>
于 2012-10-04T12:29:12.050 回答
1

把它放在 Index.php 或主页中

<div class="sidebar_left" id="sidebar_left">

<?php if ( is_active_sidebar( 'sidebar-left' ) ) : ?>
        <div id="secondary" class="widget-area" role="complementary">
            <?php dynamic_sidebar( 'sidebar-left' ); ?>
        </div><!-- #secondary -->
    <?php endif; ?>


</div>

和 CSS 在这里

#sidebar_left{
    float:left;
    /*width: 303px;*/
    border: 2px solid #A2A2A2;
    display: block;
    float: left;
    height: auto;
    margin: -532px 0 -62px -123px
    padding: 0;
    top: auto;
    width: auto;
}
于 2013-12-10T07:48:50.373 回答
0

你应该 :

你会发现很多关于这样做的教程,例如这个

于 2012-10-04T08:21:00.170 回答