Widgets area sidebar generator
Add a second sidebar
if ( ! function_exists( 'juan_widget_area' ) ) { // Register Sidebars function juan_widget_area() { $args = array( 'id' => 'juan_wa', 'class' => 'wa_estilo', 'name' => __( 'Barra lateral 2', 'juan_widget_area' ), 'description' => __( 'Esta es una widget area nueva donde colocaremos widgets y la mostraremos', 'juan_widget_area' ), ); register_sidebar( $args ); } add_action( 'widgets_init', 'juan_widget_area' ); }