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( 'textdomain', get_template_directory() . '/languages' ); //------------------Include Bootstap--------------- function my_theme_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/css2?family=Font+Name&display=swap', array(), '1.0.0' ); wp_enqueue_style( 'custom-style1', get_stylesheet_directory_uri() . '/inc/customizer-button/customizer-custom.css' ); } add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' ); //-------------------------Header Code-------------------------------- function register_my_menu() { register_nav_menu('primary-menu',__( 'Primary Menu', 'ca-simplex-blog' )); } add_action( 'init', 'register_my_menu' ); function mytheme_scripts() { wp_enqueue_style('mytheme-style', get_stylesheet_uri()); } add_action('wp_enqueue_scripts', '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_simplex_blog_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 theme_register_sidebars() { register_sidebar( array( 'name' => __( 'Primary Sidebar', 'ca-simplex-blog' ), 'id' => 'primary-sidebar', 'description' => __( 'Widgets in this area will be shown in the sidebar.', 'ca-simplex-blog' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'theme_register_sidebars' ); //------------------Credit function--------------- define('CA_SIMPLEX_BLOG_URL','https://wpthemes.chitrarchana.com/'); /* Theme Credit link */ function ca_simplex_blog_credit_link() { echo esc_html_e('Design & Developed by','ca-simplex-blog'). " Chitrarchana WP Themes"; } /** * 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_simplex_blog_skip_link_focus_fix() { // The following is minified via `terser --compress --mangle -- js/skip-link-focus-fix.js`. ?> __( 'Footer 1 Widget Area', 'ca-simplex-blog' ), 'id' => 'footer_widget_area1', 'description' => __( 'Add widgets here to appear in your footer.', 'ca-simplex-blog' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

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

', 'after_title' => '

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

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'register_footer_widget_area' ); //-------Extra function 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-simplex-blog' ), 'style_handle' => 'mytheme-heading-style', ) ); } add_action( 'init', 'mytheme_register_block_styles' ); //------Custom Block--------- function mytheme_register_block_patterns() { if ( function_exists( 'register_block_pattern' ) ) { register_block_pattern( 'mytheme/custom-pattern', array( 'title' => __( 'My Custom Pattern', 'ca-simplex-blog' ), 'description' => __( 'A custom block pattern for my theme', 'ca-simplex-blog' ), 'categories' => array( 'text' ), 'content' => '

This is my custom block pattern

', ) ); } } add_action( 'init', 'mytheme_register_block_patterns' ); function mytheme_add_editor_styles() { add_editor_style( 'editor-style.css' ); } add_action( 'admin_init', 'mytheme_add_editor_styles' ); //------------------------Comments------------- function enable_threaded_comments() { if (is_singular() && comments_open() && (get_option('thread_comments') == 1)) { wp_enqueue_script('comment-reply'); } } add_action('wp_enqueue_scripts', 'enable_threaded_comments'); // ----------------------------Menu navigation keyboard-------------- function 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', 'add_tabindex_to_menu_items', 10, 4 ); //--------------------Define-------------------- define('CA_SIMPLEX_BLOG_PRO_URL',__('https://wpthemes.chitrarchana.com/themes/ca-simplex-blog-premium-theme/','ca-simplex-blog')); define('CA_SIMPLEX_BLOG_PRO_SUPPORT',__('https://wpthemes.chitrarchana.com/support/','ca-simplex-blog')); define('CA_SIMPLEX_BLOG_PRO_DEMO',__('https://simplexpro.chitrarchana.com/','ca-simplex-blog')); define('CA_SIMPLEX_BLOG_PRO_DOCUMENTATION',__('https://wpthemes.chitrarchana.com/documentation/','ca-simplex-blog'));