'sidebar-widgets',
				'name'          => __( 'Sidebar widgets', 'foundationpress' ),
				'description'   => __( 'Drag widgets to this sidebar container.', 'foundationpress' ),
				'before_widget' => '',
				'before_title'  => '
',
				'after_title'   => '
',
			)
		);
		register_sidebar(
			array(
				'id'            => 'footer-widgets',
				'name'          => __( 'Footer widgets', 'foundationpress' ),
				'description'   => __( 'Drag widgets to this footer container', 'foundationpress' ),
				'before_widget' => '',
				'before_title'  => '',
				'after_title'   => '
',
			)
		);
	}
	add_action( 'widgets_init', 'foundationpress_sidebar_widgets' );
endif;