0, 'hide-tagline' => 0, 'color-site-title' => '#171717', // Navigation 'navigation-mobile-label' => __( 'Menu', 'bgbn' ), // General 'general-layout' => 'full-width', 'general-sticky-label' => __( 'Featured', 'bgbn' ), // Logo 'logo-regular' => '', 'logo-retina' => '', 'logo-favicon' => '', 'logo-apple-touch' => '', // Background 'background_color' => '#b9bcbf', 'background_image' => '', 'background_repeat' => 'repeat', 'background_position_x' => 'left', 'background_attachment' => 'scroll', 'background_size' => 'auto', // Fonts 'font-site-title' => 'sans-serif', 'font-header' => 'sans-serif', 'font-body' => 'Open Sans', 'font-site-title-size' => 34, 'font-site-tagline-size' => 12, 'font-nav-size' => 14, 'font-header-size' => 50, 'font-widget-size' => 13, 'font-body-size' => 17, 'font-subset' => 'latin', // Colors 'color-primary' => '#3070d1', 'color-secondary' => '#eaecee', 'color-text' => '#171717', 'color-detail' => '#b9bcbf', // Layout - Blog 'layout-blog-hide-header' => 0, 'layout-blog-hide-footer' => 0, 'layout-blog-sidebar-left' => 0, 'layout-blog-sidebar-right' => 1, 'layout-blog-featured-images' => 'post-header', 'layout-blog-post-date' => 'absolute', 'layout-blog-post-author' => 'avatar', 'layout-blog-auto-excerpt' => 0, 'layout-blog-show-categories' => 1, 'layout-blog-show-tags' => 1, // Layout - Archive 'layout-archive-hide-header' => 0, 'layout-archive-hide-footer' => 0, 'layout-archive-sidebar-left' => 0, 'layout-archive-sidebar-right' => 1, 'layout-archive-featured-images' => 'post-header', 'layout-archive-post-date' => 'absolute', 'layout-archive-post-author' => 'avatar', 'layout-archive-auto-excerpt' => 0, 'layout-archive-show-categories' => 1, 'layout-archive-show-tags' => 1, // Layout - Search 'layout-search-hide-header' => 0, 'layout-search-hide-footer' => 0, 'layout-search-sidebar-left' => 0, 'layout-search-sidebar-right' => 1, 'layout-search-featured-images' => 'thumbnail', 'layout-search-post-date' => 'absolute', 'layout-search-post-author' => 'name', 'layout-search-auto-excerpt' => 1, 'layout-search-show-categories' => 1, 'layout-search-show-tags' => 1, // Layout - Posts 'layout-post-hide-header' => 0, 'layout-post-hide-footer' => 0, 'layout-post-sidebar-left' => 0, 'layout-post-sidebar-right' => 0, 'layout-post-featured-images' => 'post-header', 'layout-post-post-date' => 'absolute', 'layout-post-post-author' => 'avatar', 'layout-post-show-categories' => 1, 'layout-post-show-tags' => 1, // Layout - Pages 'layout-page-hide-header' => 0, 'layout-page-hide-footer' => 0, 'layout-page-sidebar-left' => 0, 'layout-page-sidebar-right' => 0, 'layout-page-hide-title' => 1, 'layout-page-featured-images' => 'none', 'layout-page-post-date' => 'none', 'layout-page-post-author' => 'none', // Header 'header-text-color' => '#171717', 'header-background-color' => '#ffffff', 'header-background-image' => '', 'header-background-repeat' => 'no-repeat', 'header-background-position' => 'center', 'header-background-size' => 'cover', 'header-bar-background-color' => '#171717', 'header-bar-text-color' => '#ffffff', 'header-bar-border-color' => '#171717', 'header-text' => '', 'header-show-social' => 0, 'header-show-search' => 1, 'header-bar-content-layout' => 'default', 'header-layout' => 1, 'header-branding-position' => 'left', // Main 'main-background-color' => '#ffffff', 'main-background-image' => '', 'main-background-repeat' => 'repeat', 'main-background-position' => 'left', 'main-background-size' => 'auto', 'main-content-link-underline' => 0, // Footer 'footer-text-color' => '#464849', 'footer-border-color' => '#b9bcbf', 'footer-background-color' => '#eaecee', 'footer-background-image' => '', 'footer-background-repeat' => 'no-repeat', 'footer-background-position' => 'center', 'footer-background-size' => 'cover', 'footer-widget-areas' => 3, 'footer-text' => '', 'footer-show-social' => 1, 'footer-layout' => 1, // Social 'social-facebook' => '', 'social-twitter' => '', 'social-google-plus-square' => '', 'social-linkedin' => '', 'social-instagram' => '', 'social-flickr' => '', 'social-youtube' => '', 'social-vimeo-square' => '', 'social-pinterest' => '', 'social-email' => '', 'social-hide-rss' => 0, 'social-custom-rss' => '', ); return apply_filters( 'bgbn_setting_defaults', $defaults ); } endif; if ( ! function_exists( 'bgbn_get_default' ) ) : /** * Return a particular global option default. * * @since 1.0.0. * * @param string $option The key of the option to return. * @return mixed Default value if found; false if not found. */ function bgbn_get_default( $option ) { $defaults = bgbn_option_defaults(); return ( isset( $defaults[ $option ] ) ) ? $defaults[ $option ] : false; } endif;