true,
'site_title' => esc_html__( 'Bizplan', 'bizplan' ),
'site_title_color' => '#1a1a1a',
'show_tagline' => true,
'site_tagline' => esc_html__( 'Multipurpose WP Theme', 'bizplan' ),
'site_tagline_color' => '#cccccc',
# Primary color
'site_primary_color' => '#0fd4bb',
'menu_padding_top' => 0,
# Slider
'slider_control' => true,
'slider_timeout' => 5,
'slider_autoplay' => true,
'enable_alt_menu' => true,
'enable_scroll_top_in_mobile' => false,
'disable_service' => false,
'disable_callback' => false,
'disable_blog' => false,
'blog_title' => esc_html__( 'LATEST NEWS', 'bizplan' ),
'blog_number' => 3,
'blog_category' => 1,
'footer_text' => bizplan_get_footer_text(),
'disable_footer_widget' => false
);
return array_merge( $options, $defaults );
}
add_filter( 'bizplan_customizer_defaults', 'bizplan_default_options' );
if( !function_exists( 'bizplan_get_footer_text' ) ):
/**
* Generate Default footer text
*
* @return string
* @since bizplan 0.1
*/
function bizplan_get_footer_text(){
$text = esc_html__( 'Copyright © All Rights Reserved. Proudly powered by', 'bizplan' );
$text .= ' '.esc_html__( 'WordPress', 'bizplan' ).' | ';
$text .= esc_html__( 'Bizplan Theme by', 'bizplan' ).' ';
$text .= esc_html__( 'Keon Themes', 'bizplan' ).'';
return $text;
}
endif;