30, ); $updated_defaults = wp_parse_args( $defaults, $default_options ); return $updated_defaults; } add_filter( 'alpha_travel_vacations_customizer_defaults', 'alpha_travel_vacations_customizer_add_defaults' ); function alpha_travel_vacations_gtm( $option ) { $defaults = apply_filters( 'alpha_travel_vacations_customizer_defaults', true ); return isset( $defaults[ $option ] ) ? get_theme_mod( $option, $defaults[ $option ] ) : get_theme_mod( $option ); } if ( ! function_exists( 'alpha_travel_vacations_excerpt_length' ) ) : function alpha_travel_vacations_excerpt_length( $length ) { if ( is_admin() ) { return $length; } $length = alpha_travel_vacations_gtm( 'alpha_travel_vacations_excerpt_length' ); return absint( $length ); } endif; add_filter( 'excerpt_length', 'alpha_travel_vacations_excerpt_length', 999 );