好的,我在我的网站上添加了第二个侧栏,唯一的问题是设置小部件的样式。
下面是我在函数中使用的代码。php文件
// Widgets plugin: intializes the plugin after the widgets above have passed snuff
function wpbx_widgets_init() {
if ( !function_exists(\'register_sidebars\') ) {
return;
}
// Formats the theme widgets, adding readability-improving whitespace
$p = array(
\'before_widget\' => \'<li id="%1$s" class="widget %2$s">\',
\'after_widget\' => "</li>\\n",
\'before_title\' => \'<h3 class="widget-title">\',
\'after_title\' => "</h3>\\n"
);
register_sidebars( 2, $p );
}
我只是不知道如何设计第二个侧边栏小部件,我该怎么做?
我想使用相同的代码但不同的类名