tag in the document head, and expect WordPress to
		 * provide it for us.
		 */
		add_theme_support( 'title-tag' );
		/*
		 * Enable support for Post Thumbnails on posts and pages.
		 *
		 * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/
		 */
		add_theme_support( 'post-thumbnails' );
		// This theme uses wp_nav_menu() in one location.
		register_nav_menus(
			array(
				'primary' => esc_html__( 'Primary', 'consted' ),
			)
		);
		/*
		 * Switch default core markup for search form, comment form, and comments
		 * to output valid HTML5.
		 */
		add_theme_support(
			'html5',
			array(
				'search-form',
				'comment-form',
				'comment-list',
				'gallery',
				'caption',
				'style',
				'script',
			)
		);
		// Set up the WordPress core custom background feature.
		add_theme_support(
			'custom-background',
			apply_filters(
				'consted_custom_background_args',
				array(
					'default-color' => 'ffffff',
					'default-image' => '',
				)
			)
		);
		add_theme_support( "responsive-embeds");
		add_theme_support( "align-wide" );
		add_theme_support( 'customize-selective-refresh-widgets' );
		/**
		 * Add support for core custom logo.
		 *
		 * @link https://codex.wordpress.org/Theme_Logo
		 */
		add_theme_support(
			'custom-logo',
			array(
				'height'      => 250,
				'width'       => 250,
				'flex-width'  => true,
				'flex-height' => true,
			)
		);
		
		// remove_theme_support( 'widgets-block-editor' );
	}
	
  update_option( 'widget_block', '' );
  
endif;
add_action( 'after_setup_theme', 'consted_setup' );
/**
 * Set the content width in pixels, based on the theme's design and stylesheet.
 *
 * Priority 0 to make it available to lower priority callbacks.
 *
 * @global int $content_width
 */
function consted_content_width() {
	$GLOBALS['content_width'] = apply_filters( 'consted_content_width', 640 );
}
add_action( 'after_setup_theme', 'consted_content_width', 0 );
/**
 * Register widget area.
 *
 * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
 */
function consted_widgets_init() {
	register_sidebar(
		array(
			'name'          => esc_html__( 'Fly Sidebar', 'consted' ),
			'id'            => 'sidebar-1',
			'description'   => esc_html__( 'Add widgets here.', 'consted' ),
			'before_widget' => '
',
			'after_widget'  => '
',
			'before_title'  => '',
		)
	);
	
	register_sidebar(
		array(
			'name'          => esc_html__( 'Blog Sidebar', 'consted' ),
			'id'            => 'sidebar-2',
			'description'   => esc_html__( 'Add widgets here for single post.', 'consted' ),
			'before_widget' => '',
			'after_widget'  => '
',
			'before_title'  => '',
		)
	);
	register_sidebar(
		array(
			'name'          => esc_html__( 'Homepage Slider', 'consted' ),
			'id'            => 'slider',
			'description'   => esc_html__( 'Replace home page default slider', 'consted' ),
			'before_widget' => '',
			'after_widget'  => '
',
			'before_title'  => '',
		)
	);
	register_sidebar(
		array(
			'name'          => esc_html__( 'Inner-page Hero block', 'consted' ),
			'id'            => 'inner-hero',
			'description'   => esc_html__( 'Replace inner page hero block', 'consted' ),
			'before_widget' => '',
			'after_widget'  => '
',
			'before_title'  => '',
		)
	);
	
	register_sidebar(
		array(
			'name'          => esc_html__( 'Footer', 'consted' ),
			'id'            => 'footer-1',
			'description'   => esc_html__( 'Add widgets here.', 'consted' ),
   			'before_widget' => '',
			'before_title'  => '',
			'after_title'   => '
',
		)
	);
	
	
}
add_action( 'widgets_init', 'consted_widgets_init' );
/**
 * Enqueue scripts and styles.
 */
function consted_scripts() {
	
	wp_enqueue_style( 'consted-google-fonts', 'https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&family=Jost:wght@300;500;700&&family=Roboto+Condensed:wght@400;700&display=swap', array(), null );
	wp_enqueue_style( 'font-awesome', get_theme_file_uri( 'assets/fontawesome/css/all.css' ), array(), '5.0.0' );
	wp_enqueue_style( 'animate-2', get_theme_file_uri( 'assets/css/animate-2.css' ), array(), '4.0.0' );
	wp_enqueue_style( 'icofont', get_theme_file_uri( 'assets/icofont/icofont.css' ), array(), '4.0.0' );
	
    wp_enqueue_style( 'bootstrap', get_theme_file_uri( 'assets/css/bootstrap.css"' ), array(), '4.0.0' );
 	wp_enqueue_style( 'consted-core-style', get_theme_file_uri( 'assets/css/consted.css"' ), array(), _S_VERSION );
  
	
	wp_enqueue_style( 'consted-style', get_stylesheet_uri(), array(), _S_VERSION );
	
	$footer_bg = consted_get_option('consted_footer_bg');
	if( !empty( $footer_bg ) ){
	    $custom_css = '#colophon{ background: url( '.esc_url( $footer_bg ).' ) center center no-repeat; background-size: cover;}';
			
		wp_add_inline_style( 'consted-style', $custom_css );
	}
    wp_enqueue_script( 'bootstrap', get_theme_file_uri( 'assets/js/bootstrap.js"' ), 0, '3.3.7', true );
    wp_enqueue_script( 'consted-js', get_theme_file_uri( 'assets/js/consted.js'), array('jquery','jquery-masonry'), _S_VERSION, true);
	if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
		wp_enqueue_script( 'comment-reply' );
	}
}
add_action( 'wp_enqueue_scripts', 'consted_scripts' );
/**
 * Sample implementation of the Custom Header feature
 *
 * You can add an optional custom header image to header.php like so ...
 *
	
 *
 * @link https://developer.wordpress.org/themes/functionality/custom-headers/
 *
 * @package Consted
 */
/**
 * Set up the WordPress core custom header feature.
 *
 * @uses consted_header_style()
 */
function consted_custom_header_setup() {
	add_theme_support( 'custom-header', apply_filters( 'consted_custom_header_args', array(
		'default-image' => get_template_directory_uri() . '/assets/image/custom-header.jpg',
		'default-text-color'     => '000000',
		'width'                  => 1000,
		'height'                 => 350,
		'flex-height'            => true,
		'wp-head-callback'       => 'consted_header_style',
	) ) );
	
	register_default_headers( array(
		'default-image' => array(
		'url' => '%s/assets/image/custom-header.jpg',
		'thumbnail_url' => '%s/assets/image/custom-header.jpg',
		'description' => esc_html__( 'Default Header Image', 'consted' ),
		),
	));
}
add_action( 'after_setup_theme', 'consted_custom_header_setup' );
if ( ! function_exists( 'consted_header_style' ) ) :
	/**
	 * Styles the header image and text displayed on the blog.
	 *
	 * @see consted_custom_header_setup().
	 */
	function consted_header_style() {
		$header_text_color = get_header_textcolor();
		$header_image	   = get_header_image();
		
		
		if( !empty( $header_image ) ){
		?>