__( 'Primary Widget Area', 'hangar' ), 'id' => 'primary-widget-area', 'description' => __( 'Here you can put one or two of your main widgets (like an intro text, your page navigation or some social site links) in your left sidebar. The sidebar is fixed, so the widgets content will always be visible, even when scrolling down the page.', 'ari' ), 'before_widget' => '
  • ', 'after_widget' => '
  • ', 'before_title' => '

    ', 'after_title' => '

    ', ) ); // Secondary Widget area (right, additional sidebar) register_sidebar( array( 'name' => __( 'Secondary Widget Area', 'hangar' ), 'id' => 'secondary-widget-area', 'description' => __( 'Here you can put all the additional widgets for your right sidebar.', 'hangar' ), 'before_widget' => '
  • ', 'after_widget' => '
  • ', 'before_title' => '

    ', 'after_title' => '

    ', ) ); } /* Register sidebars by running ari_widgets_init() on the widgets_init hook. */ add_action( 'widgets_init', 'ari_widgets_init' ); ?>