tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); add_editor_style( 'css/editor-style.css' ); /* * 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( 'primary' => __( 'Primary Menu', 'uniq' ), ) ); /* * 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', ) ); add_theme_support( 'custom-background' ); add_theme_support( 'custom-logo' ); } // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'uniq_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); /* * Add Additional image sizes * */ add_theme_support( 'post-thumbnails' ); add_image_size( 'uniq-recent-post-img', 220, 220, true); add_image_size( 'uniq_home_page_img', 130, 130, true ); add_image_size( 'uniq-blog-full-width', 1200,350, true ); add_image_size( 'uniq-small-featured-image-width', 450,300, true ); add_image_size( 'uniq-blog-large-width', 800,300, true ); // Define and register starter content to showcase the theme on new sites. $starter_content = array( 'widgets' => array( 'top-left' => array( // Widget ID 'my_text' => array( // Widget $id -> set when creating a Widget Class 'text' , // Widget $instance -> settings array( 'text' => '' ) ) ), // Put two core-defined widgets in the footer 2 area. 'top-right' => array( // Widget ID 'my_text' => array( // Widget $id -> set when creating a Widget Class 'text' , // Widget $instance -> settings array( 'text' => '' ) ), ), 'footer' => array( // Widget ID 'my_text' => array( // Widget $id -> set when creating a Widget Class 'text' , // Widget $instance -> settings array( 'title' => 'About Uniq', 'text' => 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived.' ) ) ), 'footer-2' => array( // Widget ID 'recent-posts' ), 'footer-3' => array( // Widget ID 'meta' ), 'footer-4' => array( // Widget ID 'my_text' => array( // Widget $id -> set when creating a Widget Class 'text' , // Widget $instance -> settings array( 'title' => 'Company Address', 'text' => '' ) ) ), ), // Specify the core-defined pages to create and add custom thumbnails to some of them. 'posts' => array( 'home' => array( 'post_type' => 'page', ), 'blog' => array( 'post_type' => 'page', ), /*'post-one' => array( 'post_type' => 'post', 'post_title' => __( 'Post One', 'uniq'), 'post_content' => sprintf( __('

Slider Setting

You haven\'t created any slider yet. Create a post, set your slider image as Post\'s featured image ( Recommended image size 1280*450 ) ). Go to Customizer and click uniq Options => Home and select Slider Post Category and No.of Sliders.

Customizer

', 'uniq'), admin_url('customize.php') ), 'thumbnail' => '{{post-featured-image}}', ), 'post-two' => array( 'post_type' => 'post', 'post_title' => __( 'Post Two', 'uniq'), 'post_content' => sprintf( __('

Slider Setting

You haven\'t created any slider yet. Create a post, set your slider image as Post\'s featured image ( Recommended image size 1280*450 ) ). Go to Customizer and click uniq Options => Home and select Slider Post Category and No.of Sliders.

Customizer

', 'uniq'), admin_url('customize.php') ), 'thumbnail' => '{{post-featured-image}}', ), 'service-one' => array( 'post_type' => 'page', 'post_title' => __( 'Responsive Layout', 'uniq'), 'post_content' => sprintf( __('You haven\'t created any service page yet. Create Page. Go to Customizer and click uniq Options => Home => Service Section #1 and select page from dropdown page list.','uniq'), admin_url('customize.php') ), 'thumbnail' => '{{page-images}}', ), 'service-two' => array( 'post_type' => 'page', 'post_title' => __( 'Awesome Slider', 'uniq'), 'post_content' => sprintf( __('You haven\'t created any service page yet. Create Page. Go to Customizer and click uniq Options => Home => Service Section #1 and select page from dropdown page list.','uniq'), admin_url('customize.php') ), 'thumbnail' => '{{page-images}}', ), 'service-three' => array( 'post_type' => 'page', 'post_title' => __( 'Fully Customizable', 'uniq'), 'post_content' => sprintf( __('You haven\'t created any service page yet. Create Page. Go to Customizer and click uniq Options => Home => Service Section #1 and select page from dropdown page list.','uniq'), admin_url('customize.php') ), 'thumbnail' => '{{page-images}}', ), */ ), // Create the custom image attachments used as post thumbnails for pages. /*'attachments' => array( 'post-featured-image' => array( 'post_title' => __( 'slider one', 'uniq' ), 'file' => 'images/slider.png', // URL relative to the template directory. ), 'page-images' => array( 'post_title' => __( 'Page Images', 'uniq' ), 'file' => 'images/page.png', // URL relative to the template directory. ), ), */ // Default to a static front page and assign the front and posts pages. 'options' => array( 'show_on_front' => 'page', 'page_on_front' => '{{home}}', 'page_for_posts' => '{{blog}}', ), // Set the front page section theme mods to the IDs of the core-registered pages. /*'theme_mods' => array( 'slider_cat' => '1', 'service_1' => '{{service-one}}', 'service_2' => '{{service-two}}', 'service_3' => '{{service-three}}', ),*/ ); $starter_content = apply_filters( 'uniq_starter_content', $starter_content ); add_theme_support( 'starter-content', $starter_content ); endif; // uniq_setup add_action( 'after_setup_theme', 'uniq_setup' ); /** * Register widget area. * * @link http://codex.wordpress.org/Function_Reference/register_sidebar */ function uniq_widgets_init() { register_sidebar( array( 'name' => __( 'Sidebar', 'uniq' ), 'id' => 'sidebar-1', 'description' => '', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Sidebar Left', 'uniq' ), 'id' => 'sidebar-left', 'description' => __( 'Left Sidebar', 'uniq' ), 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Top Left', 'uniq' ), 'id' => 'top-left', 'description' => '', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Top Right', 'uniq' ), 'id' => 'top-right', 'description' => '', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebars( 4, array( 'name' => __( 'Footer %d', 'uniq' ), 'id' => 'footer', 'description' => '', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Footer Nav', 'uniq' ), 'id' => 'footer-nav', 'description' => '', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'uniq_widgets_init' ); /** * Enqueue scripts and styles. */ require get_template_directory() . '/includes/enqueue.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/includes/template-tags.php'; /** * Load Theme Options Panel */ require get_template_directory() . '/admin/theme-options.php'; /** * Free Theme upgrade page */ require get_template_directory() . '/includes/theme_upgrade.php'; /** * Custom functions that act independently of the theme templates. */ require get_template_directory() . '/includes/extras.php'; /** * Implement the Custom Header feature. */ require get_template_directory() . '/includes/custom-header.php'; /** * Customizer additions. */ require get_template_directory() . '/includes/customizer.php'; /** * Load Jetpack compatibility file. */ require get_template_directory() . '/includes/jetpack.php'; /** * Inline style ( Theme Options ) */ require get_template_directory() . '/includes/styles.php'; /** * Load Filter and Hook functions */ require get_template_directory() . '/includes/hooks-filters.php'; /* Woocommerce support */ add_theme_support('woocommerce'); add_theme_support( 'wc-product-gallery-zoom' ); add_theme_support( 'wc-product-gallery-lightbox' ); add_theme_support( 'wc-product-gallery-slider' ); function uniq_output_content_wrapper() { $woocommerce_sidebar = get_theme_mod('woocommerce_sidebar',true ) ; if( $woocommerce_sidebar ) { $woocommerce_sidebar_column = 'eleven'; }else { $woocommerce_sidebar_column = 'sixteen'; remove_action( 'woocommerce_sidebar', 'woocommerce_get_sidebar'); } echo '
'; } remove_action('woocommerce_before_main_content', 'woocommerce_output_content_wrapper'); add_action('woocommerce_before_main_content', 'uniq_output_content_wrapper'); function uniq_output_content_wrapper_end () { echo "
"; } add_action( 'init', 'uniq_remove_wc_breadcrumbs' ); function uniq_remove_wc_breadcrumbs() { remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0 ); } include_once( get_template_directory() . '/admin/theme-options.php' ); add_action('after_setup_theme', 'uniq_rename_template'); if( !function_exists('uniq_rename_template') ) { function uniq_rename_template() { $args = array( 'post_type' => 'page', 'posts_per_page' => -1 ); $template_query = new WP_Query($args); if( $template_query->have_posts() ) { while ( $template_query->have_posts() ) : $template_query->the_post(); $old_template_name = get_post_meta( get_the_ID(), '_wp_page_template', true ); // echo $old_template_name .'
'; switch ( $old_template_name ) { case 'page-full-width.php': $new_template_name = 'template-full-width.php'; break; case 'page-leftsidebar.php': $new_template_name = 'template-leftsidebar.php'; break; case 'page-rightsidebar.php': $new_template_name = 'template-rightsidebar.php'; break; default: $new_template_name = $old_template_name; } if( $old_template_name != $new_template_name) { update_post_meta( get_the_ID(), '_wp_page_template' ,$new_template_name ,$old_template_name ); } endwhile; // end of the loop. } $template_query = null; wp_reset_postdata(); } }