'disabled', 'slider_content_type' => 'page', 'slider_content_effect' => 'fadeout', 'enable_slider_captions' => true, 'enable_arrow_controls' => true, //About options 'about_enable' => 'disabled', 'about_content_type' => 'page', //Testimonial ptions 'testimonial_enable' => 'disabled', 'testimonial_content_type' => 'testimonial', 'testimonial_title' => esc_html__( 'What our clients are saying', 'business-park' ), 'testimonial_bg_image' => get_template_directory_uri() . '/assets/images/parallax_01.jpg', //Portfolio options 'portfolio_title' => esc_html__( 'Our Work', 'business-park' ), 'portfolio_enable' => 'disabled', 'portfolio_content_type' => 'portfolio-category', //Blog options 'blog_enable' => 'disabled', 'blog_title' => esc_html__( 'Blog Posts', 'business-park' ), //Contact options 'contact_enable' => 'disabled', 'contact_section_title' => esc_html__( 'Get in touch with us', 'business-park' ), //Logo slider options 'service_enable' => 'disabled', 'service_section_title' => esc_html__( 'our services', 'business-park' ), 'service_content_type' => 'post', //Team options 'team_enable' => 'disabled', 'team_content_type' => 'page', 'team_section_title' => esc_html__( 'Meet Our Team', 'business-park' ), /** * Theme Options */ //Theme options 'excerpt_length' => 15, 'footer_logo_enable' => true, 'copyright_text' => sprintf( esc_html__( 'Copyright © %1$s. All Rights Reserved.', 'business-park' ), date_i18n( date( 'Y' ) ) ), 'enable_pagination' => true, 'pagination_type' => 'numeric', 'archive_content_type' => 'excerpt', 'social_menu_bg_color' => '#BFBFBF', 'sidebar_position' => 'right-sidebar', 'site_layout' => 'wide', 'enable_arrow_controls' => true, 'reset_options' => false, 'enable_frontpage_content' => true, ); $output = apply_filters( 'business_park_default_theme_options', $business_park_default_options ); // Sort array in ascending order, according to the key: if ( ! empty( $output ) ) { ksort( $output ); } return $output; }