我在 function.php 中开发了一个自定义主题和 register_sidebar,以使用自定义菜单(小部件)在侧边栏上显示菜单。然后通过外观-> 菜单创建一个菜单,并使用自定义菜单将其设置在小部件的侧边栏区域现在我需要为登录页面添加一个额外的链接。这个链接
问问题
511 次
1 回答
0
$args = array(
'name' => __( 'Sidebar name', 'theme_text_domain' ),
'id' => 'unique-sidebar-id',
'description' => '',
'class' => 'PUT YOUR CLASS HERE', <=== here you can mention your class
'before_widget' => '<li id="%1$s" class="widget %2$s">',
'after_widget' => '</li>',
'before_title' => '<h2 class="widgettitle">',
'after_title' => '</h2>' ); ?>
register_sidebar( $args );
注册侧边栏参考这里
于 2013-10-03T11:19:38.297 回答