100, 'width' => 400, 'flex-width' => true, 'flex-height' => true, ) ); add_theme_support( 'customizer' ); add_theme_support( 'custom-header', array( 'width' => 1920, 'height' => 300, 'flex-height' => true, 'header-text' => false, 'unlink-homepage-logo' => true, ) ); add_theme_support( 'custom-background', array( 'default-color' => '', 'default-image' => '', 'default-repeat' => '', 'default-position-x' => '', 'default-attachment' => '', ) ); add_theme_support( 'align-wide' ); // Add support for Translation load_theme_textdomain( 'ca-biz-startup', get_template_directory() . '/languages' ); //------------------Include Bootstap--------------- function ca_biz_startup_enqueue_styles() { wp_enqueue_style( 'bootstrap', get_template_directory_uri() . '/assets/css/bootstrap.min.css' ); wp_enqueue_script( 'bootstrap', get_template_directory_uri() . '/assets/js/bootstrap.min.js', array( 'jquery' ), '', true ); wp_enqueue_script( 'custom-js', get_template_directory_uri() . '/menu/menu.js', array( 'jquery' ), '1.0', true ); wp_enqueue_style( 'custom-css', get_template_directory_uri() . '/menu/menu.css', array(), '1.0', 'all' ); wp_enqueue_style( 'google-fonts', 'https://fonts.googleapis.com/css?family=Roboto&display=swap' ); wp_enqueue_style( 'custom-style1', get_stylesheet_directory_uri() . '/inc/customizer-button/customizer-custom.css' ); } add_action( 'wp_enqueue_scripts', 'ca_biz_startup_enqueue_styles' ); //-------------------------Header Code-------------------------------- function ca_biz_startup_register_my_menu() { register_nav_menu('primary-menu',__( 'Primary Menu', 'ca-biz-startup' )); } function ca_biz_startup_wp_nav_menu_args( $args = '' ) { $args['fallback_cb'] = 'wp_page_menu'; return $args; } add_filter( 'wp_nav_menu_args', 'ca_biz_startup_wp_nav_menu_args' ); add_action( 'init', 'ca_biz_startup_register_my_menu' ); function ca_biz_startup_mytheme_scripts() { wp_enqueue_style('mytheme-style', get_stylesheet_uri()); } add_action('wp_enqueue_scripts', 'ca_biz_startup_mytheme_scripts'); //---------------Include Files---------------------- /* Customizer additions. */ require get_template_directory() . '/inc/custom-customizer.php'; require get_template_directory() . '/inc/customizer.php'; //--------------------------Radio Button Customizer Function-------------- /*Radio Button sanitization*/ function ca_biz_startup_sanitize_choices( $input, $setting ) { global $wp_customize; $control = $wp_customize->get_control( $setting->id ); if ( array_key_exists( $input, $control->choices ) ) { return $input; } else { return $setting->default; } } //-------------------sidebar------------------ function ca_biz_startup_theme_register_sidebars() { register_sidebar( array( 'name' => __( 'Primary Sidebar', 'ca-biz-startup' ), 'id' => 'primary-sidebar', 'description' => __( 'Widgets in this area will be shown in the sidebar.', 'ca-biz-startup' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'ca_biz_startup_theme_register_sidebars' ); //------------------Credit function--------------- define('ca_biz_startup_URL','https://wpthemes.chitrarchana.com/'); function ca_biz_startup_credit_link() { echo esc_html__('Design & Developed by', 'ca-biz-startup') . " " . esc_html__('Chitrarchana WP Themes', 'ca-biz-startup') . ""; } /** * Fix skip link focus in IE11. * * This does not enqueue the script because it is tiny and because it is only for IE11, * thus it does not warrant having an entire dedicated blocking script being loaded. * * @link https://git.io/vWdr2 */ function ca_biz_startup_skip_link_focus_fix() { // The following is minified via `terser --compress --mangle -- js/skip-link-focus-fix.js`. ?> __( 'Footer 1 Widget Area', 'ca-biz-startup' ), 'id' => 'footer_widget_area1', 'description' => __( 'Add widgets here to appear in your footer.', 'ca-biz-startup' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Footer 2 Widget Area', 'ca-biz-startup' ), 'id' => 'footer_widget_area2', 'description' => __( 'Add widgets here to appear in your footer.', 'ca-biz-startup' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Footer 3 Widget Area', 'ca-biz-startup' ), 'id' => 'footer_widget_area3', 'description' => __( 'Add widgets here to appear in your footer.', 'ca-biz-startup' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'ca_biz_startup_register_footer_widget_area' ); //-------Extra function ca_biz_startup_mytheme_register_block_styles() { // Register a block style for the heading block wp_register_style( 'mytheme-heading-style', get_template_directory_uri() . '/css/blocks.css', array( 'wp-blocks' ), '1.0', 'all' ); register_block_style( 'core/heading', array( 'name' => 'mytheme-heading', 'label' => __( 'My Theme Heading', 'ca-biz-startup' ), 'style_handle' => 'mytheme-heading-style', ) ); } add_action( 'init', 'ca_biz_startup_mytheme_register_block_styles' ); //------Custom Block--------- function ca_biz_startup_mytheme_register_block_patterns() { if ( function_exists( 'register_block_pattern' ) ) { register_block_pattern( 'mytheme/custom-pattern', array( 'title' => __( 'My Custom Pattern', 'ca-biz-startup' ), 'description' => __( 'A custom block pattern for my theme', 'ca-biz-startup' ), 'categories' => array( 'text' ), 'content' => '

This is my custom block pattern

', ) ); } } add_action( 'init', 'ca_biz_startup_mytheme_register_block_patterns' ); function ca_biz_startup_add_editor_styles() { add_editor_style( 'editor-style.css' ); } add_action( 'admin_init', 'ca_biz_startup_add_editor_styles' ); //------------------------Comments------------- function ca_biz_startup_enable_threaded_comments() { if (is_singular() && comments_open() && (get_option('thread_comments') == 1)) { wp_enqueue_script('comment-reply'); } } add_action('wp_enqueue_scripts', 'ca_biz_startup_enable_threaded_comments'); // ----------------------------Menu navigation keyboard-------------- function ca_biz_startup_add_tabindex_to_menu_items( $atts, $item, $args, $depth ) { // Add tabindex="0" to the menu item $atts['tabindex'] = '0'; return $atts; } add_filter( 'nav_menu_link_attributes', 'ca_biz_startup_add_tabindex_to_menu_items', 10, 4 ); //--------------------Define-------------------- define('ca_biz_startup_PRO_URL',__('https://wpthemes.chitrarchana.com/ca-biz-startup-premium-wordpress-theme/','ca-biz-startup')); define('ca_biz_startup_PRO_SUPPORT',__('https://wpthemes.chitrarchana.com/support/','ca-biz-startup')); define('ca_biz_startup_PRO_DEMO',__('https://alldemo.chitrarchana.com/biz-pro/','ca-biz-startup')); define('ca_biz_startup_PRO_DOCUMENTATION',__('https://wpthemes.chitrarchana.com/docs/ca-biz-startup-free-theme-docs/','ca-biz-startup')); define('ca_biz_startup_FREE_URL',__('https://alldemo.chitrarchana.com/biz-free/','ca-biz-startup'));