tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); add_theme_support( 'html5', array( 'gallery', 'caption' ) ); /* * Enable support for Post Thumbnails on posts and pages. * * @link http://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails */ add_theme_support( 'post-thumbnails' ); add_theme_support( 'woocommerce' ); add_theme_support( 'wc-product-gallery-zoom' ); add_theme_support( 'wc-product-gallery-lightbox' ); add_theme_support( 'wc-product-gallery-slider' ); add_image_size( 'accesspress-ray-event-thumbnail', 135, 100, true); //Latest News Events Small Image add_image_size( 'accesspress-ray-featured-thumbnail', 350, 245, true); //Featured Image add_image_size( 'accesspress-ray-portfolio-thumbnail', 400, 450, true); //Portfolio Image add_image_size( 'accesspress-ray-slider', 1920, 860, true ); //Slider image // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => __( 'Primary Menu', 'accesspress-ray' ), 'secondary' => __( 'Secondary Menu', 'accesspress-ray' ), ) ); // Setup the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'accesspress_ray_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); } endif; // accesspress_ray_setup add_action( 'after_setup_theme', 'accesspress_ray_setup' ); /** * Implement the Theme Option feature. */ require get_template_directory() . '/inc/accesspressray-custom-header.php'; /** * Implement the Theme Option feature. */ require get_template_directory() . '/inc/admin-panel/accesspressray-theme-options.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/accesspressray-template-tags.php'; /** * Custom functions that act independently of the theme templates. */ require get_template_directory() . '/inc/accesspressray-custom-functions.php'; /** * Implement the custom metabox feature */ require get_template_directory() . '/inc/accesspressray-custom-metabox.php'; /** * Load Jetpack compatibility file. */ require get_template_directory() . '/inc/jetpack.php'; /** * Load Welcome Page */ require get_template_directory() . '/welcome/welcome.php';