我正在尝试的是向我的自定义注册侧边栏添加一个附加类到前端。在codex中,我可以在注册边栏时添加一个类,但是它将显示在管理区域中而不是在前端:
<?php register_sidebar( $args ); ?>
<?php $args = array(
'name' => __( 'Sidebar name', 'theme_text_domain' ),
'id' => 'unique-sidebar-id', // ID should be LOWERCASE ! ! !
'description' => '',
'class' => '',
'before_widget' => '<li id="%1$s" class="widget %2$s">',
'after_widget' => '</li>',
'before_title' => '<h2 class="widgettitle">',
'after_title' => '</h2>' ); ?>
class-分配给Appearance-> Widget管理页面中的侧边栏的CSS类。此类仅显示在WordPress Widget管理页面的源代码中。它不会包含在您的网站的前端。注意:值“ sidebar”将被添加到类值之前。例如,“ tal”的类将导致“ sidebar-tal”的类值。 (默认:空)。
是否可以将其他CSS类添加到动态边栏中,而无需通过模板添加它?