sidebar larryfotos
// Register Sidebar function lfotos_sidebar() { $args = array( 'id' => 'sidebar-aside', 'name' => __( 'Sidebar Footer', 'larryfotos' ), 'description' => __( 'Aside Widgets.', 'larryfotos' ), 'before_title' => '<h3 class=', 'after_title' => '</h3>', 'before_widget' => '<aside id=', 'after_widget' => '</aside>', ); register_sidebar( $args ); } // Hook into the 'widgets_init' action add_action( 'widgets_init', 'lfotos_sidebar' );