tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); add_theme_support( 'align-wide' ); add_theme_support( 'post-thumbnails' ); add_image_size( 'construc-thumbnail-mobile', 350, 250, true ); add_image_size( 'construc-list-thumbnail', 380, 360, true ); add_image_size( 'construc-grid-thumbnail', 380, 320, true ); add_image_size( 'construc-thumbnail-medium', 770, 433.13, true ); add_image_size( 'construc-thumbnail-large', 1200, 675, true ); add_image_size( 'construc-header-full', 1920, 1080, true ); add_image_size( 'construc-latest-post-widget-thumb', 120, 120, true ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'main-menu' => esc_html__( 'Primary', 'construc' ), 'footer-menu' => esc_html__( 'Footer Menu', 'construc' ), ) ); add_theme_support( 'woocommerce' ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ $htmlArgs = array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', ); add_theme_support( 'html5', $htmlArgs ); $ccbgArgs = apply_filters( 'construc_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ); // Set up the WordPress core custom background feature. add_theme_support('custom-background', $ccbgArgs); // Add theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); // Add theme support for selective refresh for widgets. add_theme_support( 'editor-styles' ); add_theme_support( 'wp-block-styles' ); add_editor_style('style.css'); add_theme_support( "responsive-embeds" ); /** * Remove Theme Support */ remove_theme_support( 'widgets-block-editor' ); remove_theme_support( 'block-templates' ); /** * Add support for core custom logo. * * @link https://codex.wordpress.org/Theme_Logo */ $logoArgs = array( 'height' => 250, 'width' => 250, 'flex-width' => true, 'flex-height' => true, ); add_theme_support( 'custom-logo', $logoArgs ); // This variable is intended to be overruled from themes. // Open WPCS issue: {@link https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/issues/1043}. // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound $GLOBALS['content_width'] = apply_filters( 'construc_content_width', 640 ); } endif; add_action( 'after_setup_theme', 'construc_setup' ); /** * Register widgets */ require get_template_directory() . '/inc/register-widgets.php'; /** * Enqueue scripts */ require get_template_directory() . '/inc/enqueue-scripts.php'; /** * Implement the Custom Header feature. */ require get_template_directory() . '/inc/custom-header.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/template-tags.php'; /** * Functions which enhance the theme by hooking into WordPress. */ require get_template_directory() . '/inc/template-functions.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; /** * construc Comment Template. */ require get_template_directory() . '/inc/comment-template.php'; /** * construc sanitize functions. */ require get_template_directory() . '/inc/sanitize-functions.php'; /** * Checkout Fields */ require get_template_directory() . '/inc/checkout-fields.php'; /** * Block Pattern */ require get_template_directory() . '/inc/block-pattern/reg-block-pattern.php'; /** * Recent Post Widget */ require get_template_directory() . '/inc/recent-post.php'; if (class_exists('woocommerce')) { require get_template_directory() . '/inc/woocommerce-modification.php'; } /** * Getting Started */ require get_template_directory() . '/inc/getting-started/getting-started.php';