ast_header_break_point(), // Header Break Point. ); wp_localize_script( 'ast-navigation', 'ast', apply_filters( 'ast_theme_js_localize', $ast_localize ) ); } /** * Trim CSS * * @since 1.0 * @param string $css CSS content to trim. * @return string */ static public function trim_css( $css = '' ) { // Trim white space for faster page loading. if ( ! empty( $css ) ) { $css = preg_replace( '!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $css ); $css = str_replace( array( "\r\n", "\r", "\n", "\t", ' ', ' ', ' ' ), '', $css ); $css = str_replace( ', ', ',', $css ); } return $css; } } new AST_Enqueue_Scripts(); }// End if().