__( 'Static Frontpage', 'business-center' ), 'disabled' => __( 'Disabled', 'business-center' ), ); $output = apply_filters( 'business_center_enable_options', $business_center_enable_options ); // Sort array in ascending order, according to the key: if ( ! empty( $output ) ) { ksort( $output ); } return $output; } /** * Slider effects * @return array Slider effects */ function business_center_slider_effect() { $business_center_slider_effect = array( 'scrollHorz' => __( 'Scroll Horizontal', 'business-center' ), 'fadeout' => __( 'Fade Out', 'business-center' ), ); $output = apply_filters( 'business_center_slider_effect', $business_center_slider_effect ); // Sort array in ascending order, according to the key: if ( ! empty( $output ) ) { ksort( $output ); } return $output; }