tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /** * Enable support for Post Thumbnails on posts and pages. * * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/ */ add_theme_support( 'post-thumbnails' ); # Set the default content width. $GLOBALS['content_width'] = apply_filters( 'blogberg_content_width', 1050 ); # Register menu locations. register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'blogberg' ), 'secondary' => esc_html__( 'Secondary Menu', 'blogberg' ), 'social' => esc_html__( 'Social Menu', 'blogberg' ), 'footer' => esc_html__( 'Footer Menu', 'blogberg' ) )); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'comment-list', 'gallery', 'caption', ) ); add_theme_support( 'custom-header', array( 'default-image' => get_parent_theme_file_uri( '/assets/images/placeholder/blogberg-banner-1920-380.jpg' ), 'width' => 1920, 'height' => 380, 'flex-height' => true, 'wp-head-callback' => 'blogberg_header_style', )); register_default_headers( array( 'default-image' => array( 'url' => '%s/assets/images/placeholder/blogberg-banner-1920-380.jpg', 'thumbnail_url' => '%s/assets/images/placeholder/blogberg-banner-1920-380.jpg', 'description' => esc_html__( 'Default Header Image', 'blogberg' ), ), ) ); # Set up the WordPress core custom background feature. add_theme_support( 'custom-background', array( 'default-color' => 'ffffff', )); # Enable support for selective refresh of widgets in Customizer. add_theme_support( 'customize-selective-refresh-widgets' ); # Enable support for custom logo. add_theme_support( 'custom-logo', array( 'width' => 190, 'height' => 100, 'flex-height' => true, 'flex-width' => true, ) ); /* * Enable support for Post Formats. * * See: https://codex.wordpress.org/Post_Formats */ add_theme_support( 'post-formats', array( 'aside', 'image', 'video', 'quote', 'link', 'gallery', 'status', 'audio', 'chat', ) ); add_theme_support( 'infinite-scroll', array( 'container' => '#main-wrap', 'footer_widgets' => true, 'render' => 'blogberg_infinite_scroll_render', )); add_theme_support( 'woocommerce' ); /* * This theme styles the visual editor to resemble the theme style, * specifically font, colors, icons, and column width. */ add_editor_style( array( '/assets/css/editor-style.min.css') ); // Gutenberg support add_theme_support( 'editor-color-palette', array( array( 'name' => esc_html__( 'Tan', 'blogberg' ), 'slug' => 'tan', 'color' => '#D2B48C', ), array( 'name' => esc_html__( 'Yellow', 'blogberg' ), 'slug' => 'yellow', 'color' => '#FDE64B', ), array( 'name' => esc_html__( 'Orange', 'blogberg' ), 'slug' => 'orange', 'color' => '#ED7014', ), array( 'name' => esc_html__( 'Red', 'blogberg' ), 'slug' => 'red', 'color' => '#D0312D', ), array( 'name' => esc_html__( 'Pink', 'blogberg' ), 'slug' => 'pink', 'color' => '#b565a7', ), array( 'name' => esc_html__( 'Purple', 'blogberg' ), 'slug' => 'purple', 'color' => '#A32CC4', ), array( 'name' => esc_html__( 'Blue', 'blogberg' ), 'slug' => 'blue', 'color' => '#4E97D8', ), array( 'name' => esc_html__( 'Green', 'blogberg' ), 'slug' => 'green', 'color' => '#00B294', ), array( 'name' => esc_html__( 'Brown', 'blogberg' ), 'slug' => 'brown', 'color' => '#231709', ), array( 'name' => esc_html__( 'Grey', 'blogberg' ), 'slug' => 'grey', 'color' => '#7D7D7D', ), array( 'name' => esc_html__( 'Black', 'blogberg' ), 'slug' => 'black', 'color' => '#000000', ), )); add_theme_support( 'align-wide' ); add_theme_support( 'editor-font-sizes', array( array( 'name' => esc_html__( 'small', 'blogberg' ), 'shortName' => esc_html__( 'S', 'blogberg' ), 'size' => 12, 'slug' => 'small' ), array( 'name' => esc_html__( 'regular', 'blogberg' ), 'shortName' => esc_html__( 'M', 'blogberg' ), 'size' => 16, 'slug' => 'regular' ), array( 'name' => esc_html__( 'larger', 'blogberg' ), 'shortName' => esc_html__( 'L', 'blogberg' ), 'size' => 36, 'slug' => 'larger' ), array( 'name' => esc_html__( 'huge', 'blogberg' ), 'shortName' => esc_html__( 'XL', 'blogberg' ), 'size' => 48, 'slug' => 'huge' ) )); add_theme_support( 'editor-styles' ); add_theme_support( 'wp-block-styles' ); add_image_size( 'blogberg-1200-710', 1200, 710, true ); } add_action( 'after_setup_theme', 'blogberg_setup' ); if( ! function_exists( 'blogberg_infinite_scroll_render' ) ): /** * Set the code to be rendered on for calling posts, * hooked to template parts when possible. * * Note: must define a loop. */ function blogberg_infinite_scroll_render(){ while ( have_posts() ) : the_post(); get_template_part( 'template-parts/archive/content', '' ); endwhile; wp_reset_postdata(); } endif; if( ! function_exists( 'blogberg_header_style' ) ): /** * Styles the header image and text displayed on the blog. * * @see blogberg_setup(). */ function blogberg_header_style(){ $header_text_color = get_header_textcolor(); # If no custom options for text are set, let's bail. # get_header_textcolor() options: add_theme_support( 'custom-header' ) is default, hide text (returns 'blank') or any hex value. if ( get_theme_support( 'custom-header', 'default-text-color' ) === $header_text_color ) { return; } # If we get this far, we have custom styles. Let's do this. ?> esc_html__( 'Right Sidebar', 'blogberg' ), 'id' => 'right-sidebar', 'description' => esc_html__( 'Add widgets here.', 'blogberg' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Header Sidebar', 'blogberg' ), 'id' => 'header-sidebar', 'description' => esc_html__( 'Add widgets here. It will show in header alternative shift menu area.', 'blogberg' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); for( $i = 1; $i <= 4; $i++ ){ register_sidebar( array( 'name' => esc_html__( 'Footer', 'blogberg' ) . $i, 'id' => 'blogberg-footer-sidebar-' . $i, 'description' => esc_html__( 'Add widgets here.', 'blogberg' ), 'before_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); } } add_action( 'widgets_init', 'blogberg_widgets_init' );