Sidebar for template
Nam
if ( ! function_exists( 'shiftpress_sidebars_init' ) ) { // Register Sidebars function shiftpress_sidebars_init() { $args = array( 'id' => 'navigation-top', 'class' => 'widget-top', 'name' => __( 'Navegación arriba', 'text_domain' ), 'description' => __( 'Despliega el contenido en la navegación superior del tema', 'text_domain' ), 'before_title' => '<h3 class="widget-top__title">', 'after_title' => '</h3>', 'before_widget' => '<li id="%1$s" class="widget-top__container %2$s">', 'after_widget' => '</li>', ); register_sidebar( $args ); $args = array( 'id' => 'footer', 'class' => 'widget-footer', 'name' => __( 'Footer', 'text_domain' ), 'description' => __( 'Despliega el contenido en el footer del tema', 'text_domain' ), 'before_title' => '<h3 class="widget-footer__title">', 'after_title' => '</h3>', 'before_widget' => '<div id="%1$s" class="widget-footer__container small-12 medium-4 columns %2$s">', 'after_widget' => '</div>', ); register_sidebar( $args ); } add_action( 'widgets_init', 'shiftpress_sidebars_init' ); }