__( 'Top Menu', 'shams-solar' ), ) ); /* * Enable support for Post Formats. * * See: https://codex.wordpress.org/Post_Formats */ add_theme_support( 'post-formats', array('image','video','gallery','audio',) ); add_theme_support( 'html5', array( 'comment-form', 'comment-list', 'gallery', 'caption', ) ); add_theme_support( 'custom-logo', array( 'width' => 250, 'height' => 250, 'flex-width' => true, ) ); add_theme_support( 'custom-background', array( 'default-color' => 'f1f1f1' ) ); // Add theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); add_editor_style( array( 'assets/css/editor-style.css', shams_solar_fonts_url() ) ); } add_action( 'after_setup_theme', 'shams_solar_setup' ); /** * Register custom fonts. */ function shams_solar_fonts_url(){ $font_url = ''; $font_family = array(); $font_family[] = 'Work Sans:100,200,300,400,500,600,700,800,900'; $query_args = array( 'family' => rawurlencode(implode('|',$font_family)), ); $font_url = add_query_arg($query_args,'//fonts.googleapis.com/css'); return $font_url; } /** * Widget area. */ function shams_solar_widgets_init() { register_sidebar( array( 'name' => __( 'Blog Sidebar', 'shams-solar' ), 'id' => 'sidebox-1', 'description' => __( 'Add widgets here to appear in your sidebar on blog posts and archive pages.', 'shams-solar' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Page Sidebar', 'shams-solar' ), 'id' => 'sidebox-2', 'description' => __( 'Add widgets here to appear in your sidebar on Pages and archive pages.', 'shams-solar' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Footer 1', 'shams-solar' ), 'id' => 'footer-1', 'description' => __( 'Add widgets here to appear in your footer.', 'shams-solar' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Footer 2', 'shams-solar' ), 'id' => 'footer-2', 'description' => __( 'Add widgets here to appear in your footer.', 'shams-solar' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Footer 3', 'shams-solar' ), 'id' => 'footer-3', 'description' => __( 'Add widgets here to appear in your footer.', 'shams-solar' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Footer 4', 'shams-solar' ), 'id' => 'footer-4', 'description' => __( 'Add widgets here to appear in your footer.', 'shams-solar' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'shams_solar_widgets_init' ); /** * Enqueue scripts and styles. */ function shams_solar_scripts() { // Add custom fonts, used in the main stylesheet. wp_enqueue_style( 'shams-solar-fonts', shams_solar_fonts_url(), array(), null ); //bootstrap wp_enqueue_style( 'bootstrap', get_theme_file_uri( '/assets/css/bootstrap.css' )); // Theme stylesheet. wp_enqueue_style( 'shams-solar-basic-style', get_stylesheet_uri() ); //font-awesome wp_enqueue_style( 'font-awesome', get_template_directory_uri().'/assets/css/fontawesome-all.css' ); // Load the html5 shiv. wp_enqueue_script( 'html5', get_theme_file_uri( '/assets/js/html5.js' ), array(), '3.7.3' ); wp_script_add_data( 'html5', 'conditional', 'lt IE 9' ); wp_enqueue_script( 'shams-solar-skip-link-focus-fix', get_theme_file_uri( '/assets/js/skip-link-focus-fix.js' ), array(), '1.0', true ); $shams_solarScreenReaderText=array(); if ( has_nav_menu( 'top' ) ) { wp_enqueue_script( 'shams-solar-navigation-jquery', get_theme_file_uri( '/assets/js/navigation.js' ), array( 'jquery' ), '1.0', true ); $shams_solarScreenReaderText['expand'] = __( 'Expand child menu', 'shams-solar' ); $shams_solarScreenReaderText['collapse'] = __( 'Collapse child menu', 'shams-solar' ); } wp_enqueue_script( 'jquery-custom', get_theme_file_uri( '/assets/js/custom.js' ), array( 'jquery' ), true ); wp_enqueue_script( 'bootstrap', get_theme_file_uri( '/assets/js/bootstrap.js' ), array( 'jquery' ), true ); wp_localize_script( 'shams-solar-skip-link-focus-fix', 'shams_solarScreenReaderText', $shams_solarScreenReaderText ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'shams_solar_scripts' ); function shams_solar_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; } } // Change number or products per row to 3 add_filter('loop_shop_columns', 'shams_solar_loop_columns'); if (!function_exists('shams_solar_loop_columns')) { function shams_solar_loop_columns() { return 3; // 3 products per row } } /* Excerpt Limit Begin */ function shams_solar_string_limit_words($string, $word_limit) { $words = explode(' ', $string, ($word_limit + 1)); if(count($words) > $word_limit) array_pop($words); return implode(' ', $words); } function shams_solar_sanitize_dropdown_pages( $page_id, $setting ) { // Ensure $input is an absolute integer. $page_id = absint( $page_id ); // If $page_id is an ID of a published page, return it; otherwise, return the default. return ( 'publish' == get_post_status( $page_id ) ? $page_id : $setting->default ); } define('SHAMS_SOLAR_LIVE_DEMO','https://www.themeseye.com/demo/shams-solar-pro/','shams-solar'); define('SHAMS_SOLAR_BUY_PRO','https://www.themeseye.com/wordpress/solar-energy-wordpress-theme/','shams-solar'); define('SHAMS_SOLAR_PRO_DOC','https://themeseye.com/theme-demo/docs/shams-solar-pro/','shams-solar'); define('SHAMS_SOLAR_FREE_DOC','https://themeseye.com/theme-demo/docs/free-shams-solar/','shams-solar'); define('SHAMS_SOLAR_PRO_SUPPORT','https://www.themeseye.com/forums/forum/themeseye-support/','shams-solar'); define('SHAMS_SOLAR_FREE_SUPPORT','https://wordpress.org/support/theme/shams-solar','shams-solar'); //footer Link define('SHAMS_SOLAR_CREDIT','https://www.themeseye.com/wordpress/free-solar-energy-wordpress-theme/','shams-solar'); if ( ! function_exists( 'shams_solar_credit' ) ) { function shams_solar_credit(){ echo "".esc_html__('Solar WordPress Theme','shams-solar').""; } } require get_parent_theme_file_path( '/inc/custom-header.php' ); require get_parent_theme_file_path( '/inc/template-tags.php' ); require get_parent_theme_file_path( '/inc/template-functions.php' ); require get_parent_theme_file_path( '/inc/customizer.php' ); require get_parent_theme_file_path( '/inc/dashboard/get_started_info.php' );