esc_html__( 'Business Gravity', 'business-gravity' ), 'site_title_color' => '#10242b', 'site_tagline' => esc_html__( 'Business WP Theme', 'business-gravity' ), 'site_tagline_color' => '#4d4d4d', # Primary color 'site_primary_color' => '#9068BE', # Slider 'slider_control' => true, 'slider_timeout' => 5, 'slider_autoplay' => true, 'slider_button_text' => esc_html__( 'Contact', 'business-gravity' ), 'slider_button_url' => esc_html__( '#', 'business-gravity' ), 'disable_slider_button' => false, 'disable_slider' => false, # Service 'disable_service' => false, # Callback 'callback_title' => esc_html__( 'Best Business WordPress Theme', 'business-gravity' ), 'callback_button_text' => esc_html__( 'Get a Quote', 'business-gravity' ), 'callback_button_url' => esc_html__( '#', 'business-gravity' ), 'disable_callback' => false, # About 'disable_about' => false, # Portfolio 'portfolio_title' => esc_html__( 'Some Works', 'business-gravity' ), 'disable_portfolio' => false, # Testimonial 'testimonial_title' => esc_html__( 'Client Testimonials', 'business-gravity' ), 'disable_testimonial' => false, # Highlight 'highlight_section_title' => esc_html__( 'Trending Posts', 'business-gravity' ), 'highlight_control' => true, 'highlight_autoplay' => true, 'disable_highlight' => false, # Contact 'contact_title' => esc_html__( 'Reach out & say hello', 'business-gravity' ), 'disable_contact' => false, # Footer Callback 'footer_callback_title' => esc_html__( 'Ready to create experiences?', 'business-gravity' ), 'footer_callback_button_text' => esc_html__( 'Learn More', 'business-gravity' ), 'footer_callback_button_url' => esc_html__( '#', 'business-gravity' ), 'disable_footer_callback' => false, # Theme options # Header 'disable_top_header' => false, 'header_button_text' => esc_html__( 'Get a Quote', 'business-gravity' ), 'header_button_url' => esc_html__( '#', 'business-gravity' ), 'disable_header_button' => false, 'disable_fixed_header' => false, 'top_header_address' => esc_html__( 'Rock Street, San Francisco', 'business-gravity' ), 'top_header_email' => esc_html__( 'company@mail.com', 'business-gravity' ), 'top_header_phone' => esc_html__( '1 (234) 567-891', 'business-gravity' ), 'header_layout' => 'header_four', # Layout 'archive_layout' => 'right', 'archive_post_layout' => 'grid', 'archive_post_image' => 'default', 'archive_post_image_alignment' => 'center', 'single_layout' => 'compact', # Blog 'archive_page_title' => esc_html__( 'Welcome to Business Gravity', 'business-gravity' ), # Footer 'footer_layout' => 'footer_three', 'enable_scroll_top_in_mobile' => false, 'disable_footer_widget' => false, 'footer_text' => business_gravity_get_footer_text(), ); return array_merge( $options, $defaults ); } add_filter( 'Businessgravity_Customizer_defaults', 'business_gravity_default_options' ); if( !function_exists( 'business_gravity_get_footer_text' ) ): /** * Generate Default footer text * * @return string * @since Business Gravity 1.0.3 */ function business_gravity_get_footer_text(){ $text = esc_html__( 'Copyright © All Rights Reserved.', 'business-gravity' ); return $text; } endif;