__( 'Primary Menu', 'abaris' ),
	) );
	// Setup the WordPress core custom background feature.
	add_theme_support( 'custom-background', apply_filters( 'abaris_custom_background_args', array(
		'default-color' => 'ffffff',
		'default-image' => '',
	) ) );
	// Add theme support for Semantic Markup
	$markup = array( 'search-form', 'comment-form', 'comment-list', );
	add_theme_support( 'html5', $markup );
}
endif; // abaris_setup
add_action( 'after_setup_theme', 'abaris_setup' );
/**
 * Register widgetized area and update sidebar with default widgets.
 */
function abaris_widgets_init() {
	register_sidebar( array(
		'name'          => __( 'Sidebar', 'abaris' ),
		'id'            => 'sidebar-1',
		'before_widget' => '',
		'before_title'  => '
',
	) );
	register_sidebar( array(
		'name'          => __( 'Sidebar', 'abaris' ),
		'id'            => 'sidebar-1',
		'before_widget' => '',
		'before_title'  => '',
	) );
	register_sidebar( array(
		'name'          => __( 'Footer 1', 'abaris' ),
		'id'            => 'footer-1',
		'before_widget' => '',
		'before_title'  => '',
	) );
	register_sidebar( array(
		'name'          => __( 'Footer 2', 'abaris' ),
		'id'            => 'footer-2',
		'before_widget' => '',
		'before_title'  => '',
	) );
	register_sidebar( array(
		'name'          => __( 'Footer 3', 'abaris' ),
		'id'            => 'footer-3',
		'before_widget' => '',
		'before_title'  => '',
	) );
	register_sidebar( array(
		'name'          => __( 'Footer 4', 'abaris' ),
		'id'            => 'footer-4',
		'before_widget' => '',
		'before_title'  => '',
	) );
}
add_action( 'widgets_init', 'abaris_widgets_init' );
/**
 * Defining constants to use through out theme code
 */
	require_once get_template_directory() . '/includes/constants.php';
/**
 * Enqueue Scripts and Styles
 */
	require_once ABARIS_INCLUDES_DIR . '/enqueue.php';
/**
 * Implement the Custom Header feature.
 */
require ABARIS_INCLUDES_DIR . '/custom-header.php';
// Enable support for Post Formats.
add_theme_support( 'post-formats', array( 'aside', 'image', 'video', 'quote', 'link' ) );
	
/**
 * Custom functions for this theme.
 */
require ABARIS_INCLUDES_DIR . '/theme-functions.php';
/**
 * Custom template tags for this theme.
 */
require ABARIS_INCLUDES_DIR . '/template-tags.php';
/**
 * Custom functions that act independently of the theme templates.
 */
require ABARIS_INCLUDES_DIR . '/extras.php';
/**
 * Load Theme Options Page
 * This uses Redux Framework Plugin
 */
require_once( ABARIS_INCLUDES_DIR . '/load-plugins.php' );
if( class_exists('ReduxFrameworkPlugin')) {
	require_once( ABARIS_INCLUDES_DIR . '/theme-options-config.php' );
}