在后台组织加宽区域的位置

时间:2015-10-06 作者:Ben Racicot

是否有办法在WP admin->Appearance->Widgets页面中定位小部件区域?我已经按照正确的顺序排列了register\\u边栏函数,但它们似乎是随机显示的。

$sidebars = array (
    \'sidebar-about\'         => \'About\',
    \'sidebar-wwd\'           => \'What We Do\',
    \'sidebar-news\'          => \'News\',
    \'sidebar-videos\'        => \'Videos\',
    \'sidebar-careers\'       => \'Careers\',
    \'sidebar-news\'          => \'News\',
    \'sidebar-posts\'         => \'Shared\',
    \'sidebar-press\'         => \'Press Release\',
    \'sidebar-casestudy\'     => \'Case Study\',
);

foreach ( $sidebars as $id => $sidebar) {
    register_sidebar(
        array (
            \'name\'          => __( $sidebar, \'bonestheme\' ),
            \'id\'            => $id,
            \'before_widget\' => \'<aside id="%1$s" class="widget %2$s">\',
            \'after_widget\'  => \'</aside>\',
            \'before_title\'  => \'<h3 class="widget-title">\',
            \'after_title\'   => \'</h3>\',
        )
    );
}
还有,对于像这样的自定义WP后端开发,有什么推荐的资源吗?

1 个回复
SO网友:sbounty

我使用了你的代码,订单按照定义很好。请注意,它填写第一列,然后从第二列开始。因此,要交叉检查数组的顺序,必须在第一列中从上到下,然后在第二列中。下面是侧边栏是如何在我的末尾出现的。

enter image description here

如果我误解了这个问题,请告诉我。