/** * Drfuri Core functions and definitions * * @package Unero */ /** * Sets up theme defaults and registers support for various WordPress features. * * @since 1.0 * * @return void */ function unero_setup() { // Sets the content width in pixels, based on the theme's design and stylesheet. $GLOBALS['content_width'] = apply_filters( 'unero_content_width', 840 ); // Theme supports add_theme_support( 'woocommerce' ); add_theme_support( 'automatic-feed-links' ); add_theme_support( 'title-tag' ); add_theme_support( 'post-thumbnails' ); add_theme_support( 'post-formats', array( 'audio', 'gallery', 'video' ) ); add_theme_support( 'html5', array( 'comment-list', 'search-form', 'comment-form', 'gallery', ) ); if ( class_exists( 'WooCommerce' ) ) { add_theme_support( 'woocommerce', array( 'wishlist' => array( 'single_button_position' => 'theme', 'loop_button_position' => 'theme', 'button_type' => 'theme', ), ) ); } if( unero_fonts_url() ) { add_editor_style( array( 'css/editor-style.css', unero_fonts_url(), get_template_directory_uri() . '/css/linearicons.min.css' ) ); } else { add_editor_style( 'css/editor-style.css' ); } // Load regular editor styles into the new block-based editor. add_theme_support( 'editor-styles' ); // Load default block styles. add_theme_support( 'wp-block-styles' ); // Add support for responsive embeds. add_theme_support( 'responsive-embeds' ); add_theme_support( 'align-wide' ); add_theme_support( 'align-full' ); // Register theme nav menu register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'unero' ), 'user_logged' => esc_html__( 'User Logged Menu', 'unero' ), ) ); $image_sizes = unero_get_option( 'image_sizes_default' ); if ( is_null( $image_sizes ) || ! is_array( $image_sizes ) ) { $image_sizes = array( 'blog_large', 'blog_normal', 'blog_masonry', 'blog_grid', 'post_normal', 'categories_grid', 'shop_masonry', 'portfolio_masonry', 'portfolio_carousel', ); } // Image Size if ( in_array( 'blog_large', $image_sizes ) ) { add_image_size( 'unero-blog-large', 1170, 360, true ); } if ( in_array( 'blog_normal', $image_sizes ) ) { add_image_size( 'unero-blog-normal', 800, 397, true ); } if ( in_array( 'blog_masonry', $image_sizes ) ) { add_image_size( 'unero-blog-masonry', 370, 588, false ); } if ( in_array( 'post_normal', $image_sizes ) || in_array( 'blog_grid', $image_sizes ) || in_array( 'shop_masonry', $image_sizes ) ) { add_image_size( 'unero-product-masonry-normal', 370, 370, true ); } if ( in_array( 'categories_grid', $image_sizes ) ) { add_image_size( 'unero-product-cat-normal', 360, 422, true ); add_image_size( 'unero-product-cat-long', 800, 422, true ); } if ( in_array( 'shop_masonry', $image_sizes ) ) { add_image_size( 'unero-product-masonry-large', 370, 499, true ); add_image_size( 'unero-product-masonry-long', 270, 364, true ); } if ( in_array( 'portfolio_masonry', $image_sizes ) ) { add_image_size( 'unero-portfolio-masonry', 540, 670, false ); } if ( in_array( 'portfolio_carousel', $image_sizes ) ) { add_image_size( 'unero-portfolio-carousel', 1170, 644, true ); } // Initialize global $unero_woocommerce; $unero_woocommerce = new Unero_WooCommerce; if ( is_admin() ) { new Unero_Meta_Box_Product_Data; } } add_action( 'after_setup_theme', 'unero_setup' ); /** * Register widgetized area and update sidebar with default widgets. * * @since 1.0 * * @return void */ function unero_register_sidebar() { // Register primary sidebar $sidebars = array( 'blog-sidebar' => esc_html__( 'Blog Sidebar', 'unero' ), 'menu-sidebar' => esc_html__( 'Menu Sidebar', 'unero' ), 'catalog-sidebar' => esc_html__( 'Catalog Sidebar', 'unero' ), 'catalog-filter' => esc_html__( 'Catalog Filter', 'unero' ), 'portfolio-sidebar' => esc_html__( 'Portfolio Sidebar', 'unero' ), 'page-sidebar' => esc_html__( 'Page Sidebar', 'unero' ), 'product-sidebar' => esc_html__( 'Product Sidebar', 'unero' ), ); // Register footer sidebars for ( $i = 1; $i <= 6; $i ++ ) { $sidebars["footer-sidebar-$i"] = esc_html__( 'Footer', 'unero' ) . " $i"; } // Register sidebars foreach ( $sidebars as $id => $name ) { register_sidebar( array( 'name' => $name, 'id' => $id, 'before_widget' => '
', 'before_title' => '