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' ); add_theme_support( 'custom-header' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'main-menu' => esc_html__( 'Primary Menu', 'gridchamp' ), ) ); /* * 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', ) ); $args = array( 'default-color' => 'ffffff', 'default-image' => '', ); add_theme_support( 'custom-background', $args ); // Add theme support for selective refresh for widgets. 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, ) ); add_editor_style( get_stylesheet_uri() ); } endif; add_action( 'after_setup_theme', 'gridchamp_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 gridchamp_content_width() { $GLOBALS['content_width'] = apply_filters( 'gridchamp_content_width', 640 ); } add_action( 'after_setup_theme', 'gridchamp_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function gridchamp_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'gridchamp' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Add widgets here.', 'gridchamp' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer #1', 'gridchamp' ), 'id' => 'footer-1', 'description' => esc_html__( 'Add widgets here.', 'gridchamp' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer #2', 'gridchamp' ), 'id' => 'footer-2', 'description' => esc_html__( 'Add widgets here.', 'gridchamp' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer #3', 'gridchamp' ), 'id' => 'footer-3', 'description' => esc_html__( 'Add widgets here.', 'gridchamp' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer #4', 'gridchamp' ), 'id' => 'footer-4', 'description' => esc_html__( 'Add widgets here.', 'gridchamp' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'gridchamp_widgets_init' ); /** * Enqueue scripts and styles. */ function gridchamp_scripts() { wp_enqueue_style( 'gridchamp-style', get_stylesheet_uri(), array(), GIRDCHAMP_VERSION ); wp_style_add_data( 'gridchamp-style', 'rtl', 'replace' ); wp_enqueue_style('font-awesome', get_template_directory_uri() . '/css/font-awesome.css', '4.7.0'); wp_enqueue_style('swiper-bundle', get_template_directory_uri() . '/css/swiper-bundle.css', '6.5.9'); wp_enqueue_script( 'gridchamp-navigation', get_template_directory_uri() . '/js/navigation.js', array(), GIRDCHAMP_VERSION, true ); wp_enqueue_script( 'swiper-bundle', get_template_directory_uri() . '/js/swiper-bundle.js', array('jquery'), '6.5.9', true ); wp_enqueue_script( 'isotope-pkgd', get_template_directory_uri() . '/js/isotope.pkgd.js', array('jquery'), '3.0.6', true ); wp_enqueue_script( 'gridchamp-scripts', get_template_directory_uri() . '/js/gridchamp-scripts.js', array('jquery'), '', true ); //Loading google fonts as selected from customizer $gridchamp_body_font = esc_html(get_theme_mod('gridchamp_body_fonts')); $gridchamp_heading_font = esc_html(get_theme_mod('gridchamp_heading_fonts')); if( $gridchamp_body_font ) { wp_enqueue_style( 'gridchamp-body-fonts', '//fonts.googleapis.com/css?family='. $gridchamp_body_font ); } else { wp_enqueue_style( 'gridchamp-body-fonts', '//fonts.googleapis.com/css?family=Heebo:wght@100;200;300;400;500;700'); } if( $gridchamp_heading_font ) { wp_enqueue_style( 'gridchamp-headings-fonts', '//fonts.googleapis.com/css?family='. $gridchamp_heading_font ); } else { wp_enqueue_style( 'gridchamp-headings-fonts', '//fonts.googleapis.com/css?family=Roboto:400,400italic,700,700italic'); } if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'gridchamp_scripts' ); /** * 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'; /** * Theme Breadcrumbs */ require get_template_directory() . '/inc/gridchamp-breadcrumbs.php'; /** * Recommended plugins for this theme. */ require get_template_directory() . '/inc/tgmpa/recommended-plugins.php'; /** * Theme hooks */ require get_template_directory() . '/inc/gridchamp-hooks.php'; /** * Load Jetpack compatibility file. */ if ( defined( 'JETPACK__VERSION' ) ) { require get_template_directory() . '/inc/jetpack.php'; } /** * Adds customizable styles to your */ if ( ! function_exists( 'gridchamp_dynamic_css' ) ) : function gridchamp_dynamic_css(){ get_template_part('inc/customizer/dynamic-style'); } endif; add_action( 'wp_head', 'gridchamp_dynamic_css'); if( ! function_exists('gridchamp_archive_title_filter')): function gridchamp_archive_title_filter( $title ) { return preg_replace( '#^[\w\d\s]+:\s*#', '', strip_tags( $title ) ); } endif; add_filter( 'get_the_archive_title', 'gridchamp_archive_title_filter' ); /** Adding Woocommerce support to the theme gridchamp */ if ( ! function_exists( 'gridchamp_woocommerce_support' ) ) : function gridchamp_woocommerce_support() { add_theme_support( 'woocommerce' ); } endif; add_action( 'after_setup_theme', 'gridchamp_woocommerce_support' ); if(class_exists('woocommerce')){ add_filter('loop_shop_columns', 'gridchamp_alter_woo_columns'); if (!function_exists('gridchamp_alter_woo_columns')) { function gridchamp_alter_woo_columns() { return 3; } } } function gridchamp_set_to_premium() { $premium_status = false; if ( class_exists( 'Walker_Core' ) ) { $WC = new Walker_Core(); $premium_status = $WC->walker_core_premium_status(); } return $premium_status; }