tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); set_post_thumbnail_size( 300, 300, true ); add_image_size( 'themewidget', 65, 65 ); /* * Enable support for Post Thumbnails on posts and pages. * * @link http://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails */ add_theme_support( 'post-thumbnails' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'topmenu' => esc_html__( 'Top Menu', 'ishop' ), 'primary' => esc_html__( 'Primary Menu', 'ishop' ), ) ); /* * 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', ) ); /* * Enable support for Post Formats. * See http://codex.wordpress.org/Post_Formats */ add_theme_support( 'post-formats', array( 'aside', 'image', 'video', 'quote', 'link', ) ); /* * This theme styles the visual editor to resemble the theme style, * specifically font, colors, icons, and column width. */ add_editor_style( array( 'css/editor-style.css') ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'ishop_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); } endif; // ishop_setup add_action( 'after_setup_theme', 'ishop_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 ishop_content_width() { $GLOBALS['content_width'] = apply_filters( 'ishop_content_width', 700 ); if ( ! isset( $content_width ) ) $content_width = 700; } add_action( 'after_setup_theme', 'ishop_content_width', 0 ); /** * Register widget area. * * @link http://codex.wordpress.org/Function_Reference/register_sidebar */ function ishop_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'ishop' ), 'id' => 'sidebar-1', 'description' => '', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Woocommerce Sidebar', 'ishop' ), 'id' => 'woo-sidebar', 'description' => '', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Widget 1', 'ishop' ), 'id' => 'footer-1', 'description' => '', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Widget 2', 'ishop' ), 'id' => 'footer-2', 'description' => '', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Widget 3', 'ishop' ), 'id' => 'footer-3', 'description' => '', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Widget 4', 'ishop' ), 'id' => 'footer-4', 'description' => '', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'ishop_widgets_init' ); /** * Enqueue scripts and styles. */ function ishop_scripts() { wp_enqueue_style( 'ishop-style', get_stylesheet_uri() ); wp_enqueue_style( 'ishop-customcss', get_stylesheet_directory_uri() . '/css/custom.css' ); /* Add Foundation CSS */ wp_enqueue_style( 'digital-nivo-slider-style', get_template_directory_uri()."/css/nivo.css" ); wp_enqueue_style( 'font-awesome', get_stylesheet_directory_uri() . '/font-awesome/css/font-awesome.min.css' ); wp_enqueue_style( 'foundation-css', get_stylesheet_directory_uri() . '/foundation/css/foundation.css' ); wp_enqueue_style('reset', get_template_directory_uri()."/foundation/css/normalize.css",array(),'5.1.1','screen'); /* Add Foundation JS */ wp_enqueue_script( 'ishop-navigation', get_template_directory_uri() . '/js/navigation.js', array(), '20120206', true ); wp_enqueue_script('backscript', get_template_directory_uri().'/js/scroll.js', array('jquery'), '1.0', false ); wp_enqueue_script( 'digital-nivo-slider', get_template_directory_uri() . '/js/nivo.slider.js', array('jquery') ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'ishop_scripts' ); function register_ishop_scripts() { wp_deregister_script('jquery-min'); wp_register_script('jquery-min', get_template_directory_uri()."/js/jquery.min.js", array(),'2.1.0',false); wp_register_script('foundation-js', get_template_directory_uri()."/foundation/js/foundation.min.js", array('jquery'),'5.1.1',true); wp_enqueue_script(array('jquery-min','foundation-js')); } add_action('wp_print_scripts','register_ishop_scripts'); /** * Enqueue script for custom customize control. */ function ishop_custom_customize_enqueue() { wp_enqueue_style( 'customizer-css', get_stylesheet_directory_uri() . '/css/customizer-css.css' ); } add_action( 'customize_controls_enqueue_scripts', 'ishop_custom_customize_enqueue' ); /** * 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'; /** * Custom functions that act independently of the theme templates. */ require get_template_directory() . '/inc/extras.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; /** * Load Jetpack compatibility file. */ require get_template_directory() . '/inc/jetpack.php'; /** * custom-function file. */ require get_template_directory() . '/inc/custom-function.php';