'eaeaea' ) ) ); /* * Let WordPress manage the document title. * By adding theme support, we declare that this theme does not use a * hard-coded tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support('title-tag'); // Enable support for Post Formats. add_theme_support( 'post-formats', array( 'aside', 'image', 'video', 'quote', 'link', 'gallery', 'chat', 'audio', 'status' ) ); // Adding excerpt option box for pages as well add_post_type_support( 'page', 'excerpt' ); /* * 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', )); } endif; /** * Define Directory Location Constants */ define( 'COLORMAG_PARENT_DIR', get_template_directory() ); define( 'COLORMAG_CHILD_DIR', get_stylesheet_directory() ); define( 'COLORMAG_INCLUDES_DIR', COLORMAG_PARENT_DIR. '/inc' ); define( 'COLORMAG_CSS_DIR', COLORMAG_PARENT_DIR . '/css' ); define( 'COLORMAG_JS_DIR', COLORMAG_PARENT_DIR . '/js' ); define( 'COLORMAG_LANGUAGES_DIR', COLORMAG_PARENT_DIR . '/languages' ); define( 'COLORMAG_ADMIN_DIR', COLORMAG_INCLUDES_DIR . '/admin' ); define( 'COLORMAG_WIDGETS_DIR', COLORMAG_INCLUDES_DIR . '/widgets' ); define( 'COLORMAG_ADMIN_IMAGES_DIR', COLORMAG_ADMIN_DIR . '/images' ); /** * Define URL Location Constants */ define( 'COLORMAG_PARENT_URL', get_template_directory_uri() ); define( 'COLORMAG_CHILD_URL', get_stylesheet_directory_uri() ); define( 'COLORMAG_INCLUDES_URL', COLORMAG_PARENT_URL. '/inc' ); define( 'COLORMAG_CSS_URL', COLORMAG_PARENT_URL . '/css' ); define( 'COLORMAG_JS_URL', COLORMAG_PARENT_URL . '/js' ); define( 'COLORMAG_LANGUAGES_URL', COLORMAG_PARENT_URL . '/languages' ); define( 'COLORMAG_ADMIN_URL', COLORMAG_INCLUDES_URL . '/admin' ); define( 'COLORMAG_WIDGETS_URL', COLORMAG_INCLUDES_URL . '/widgets' ); define( 'COLORMAG_ADMIN_IMAGES_URL', COLORMAG_ADMIN_URL . '/images' ); /** Load functions */ require_once( COLORMAG_INCLUDES_DIR . '/custom-header.php' ); require_once( COLORMAG_INCLUDES_DIR . '/functions.php' ); require_once( COLORMAG_INCLUDES_DIR . '/header-functions.php' ); require_once( COLORMAG_INCLUDES_DIR . '/customizer.php' ); require_once( COLORMAG_ADMIN_DIR . '/meta-boxes.php' ); /** Load Widgets and Widgetized Area */ require_once( COLORMAG_WIDGETS_DIR . '/widgets.php' ); ?>