headr ad-space sidebar
if ( ! function_exists( 'custom_sidebars' ) ) { // Register Sidebars function custom_sidebars() { $args = array( 'id' => 'header_ads', 'name' => __( 'Header ads', 'pam' ), 'description' => __( 'Header ad-space sidebar', 'pam' ), 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', 'before_widget' => '<div id="%1$s" class="sb-widget %2$s">', 'after_widget' => '</div>', ); register_sidebar( $args ); } add_action( 'widgets_init', 'custom_sidebars' ); }