'default', 'blog-single-max-width' => 1200, 'blog-single-meta' => array( 'comments', 'category', 'author', ), // Blog. 'blog-width' => 'default', 'blog-max-width' => 1200, 'blog-post-content' => 'excerpt', 'blog-meta' => array( 'comments', 'category', 'author', ), // Colors. 'text-color' => '#3a3a3a', 'link-color' => '#0085ba', 'link-h-color' => '#3a3a3a', // Buttons. 'button-color' => '', 'button-h-color' => '', 'button-bg-color' => '', 'button-bg-h-color' => '', 'button-radius' => 2, 'button-v-padding' => 10, 'button-h-padding' => 40, // Footer - Small. 'footer-sml-layout' => 'footer-sml-layout-1', 'footer-sml-section-1' => 'custom', 'footer-sml-section-1-credit' => __( 'Copyright © [current_year] [site_title] | Powered by [theme_author]', 'astra' ), 'footer-sml-section-2' => '', 'footer-sml-section-2-credit' => __( 'Copyright © [current_year] [site_title] | Powered by [theme_author]', 'astra' ), 'footer-sml-dist-equal-align' => true, 'footer-sml-divider' => 4, 'footer-sml-divider-color' => '#fff', 'footer-layout-width' => 'content', // General. 'display-site-title' => 1, 'display-site-tagline' => 0, // Header - Primary. 'header-main-rt-section' => 'none', 'header-main-rt-section-html' => __( 'HTML is allowed here' , 'astra' ), 'header-main-sep' => 1, 'header-main-sep-color' => '', 'header-main-layout-width' => 'content', // Site Layout. 'site-layout' => 'ast-full-width-layout', 'site-content-width' => 1200, 'site-layout-outside-bg-color' => '', // Container. 'site-content-layout' => 'plain-container', 'single-page-content-layout' => 'plain-container', 'single-post-content-layout' => 'content-boxed-container', 'archive-post-content-layout' => 'content-boxed-container', // Typography. 'body-font-family' => 'inherit', 'body-font-weight' => 'inherit', 'font-size-body' => 15, 'body-line-height' => '', 'body-text-transform' => '', 'font-size-site-title' => 35, 'font-size-site-tagline' => 15, 'font-size-entry-title' => 30, 'font-size-page-title' => 30, 'font-size-h1' => 48, 'font-size-h2' => 42, 'font-size-h3' => 30, 'font-size-h4' => 20, 'font-size-h5' => 18, 'font-size-h6' => 15, // Sidebar. 'site-sidebar-layout' => 'right-sidebar', 'site-sidebar-width' => 30, 'single-page-sidebar-layout' => 'no-sidebar', 'single-post-sidebar-layout' => 'right-sidebar', 'archive-post-sidebar-layout' => 'right-sidebar', ) ); } /** * Get theme options from static array() * * @return array Return array of theme options. */ public static function get_options() { return self::$db_options; } /** * Update theme static option array. */ public static function refresh() { self::$db_options = wp_parse_args( get_option( AST_THEME_SETTINGS ), self::defaults() ); } } }// End if(). /** * Kicking this off by calling 'get_instance()' method */ $ast_theme_options = Ast_Theme_Options::get_instance();