Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save DylanCodeCabin/6c387d8fc37559d2cd153de1fe3a9ca2 to your computer and use it in GitHub Desktop.

Select an option

Save DylanCodeCabin/6c387d8fc37559d2cd153de1fe3a9ca2 to your computer and use it in GitHub Desktop.
wpgmza-rest-htmlcomment-remove.js
(function( $ ) {
var _old = $.ajax;
$.ajaxFiltering = {};
$.ajax = function(url, settings) {
settings.dataFilter = function(data, type){
return data.replace(/^(<!--(.*)-->)/g, '', data);
}
return _old(url, settings);
}
}( jQuery ));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment