Skip to content

Instantly share code, notes, and snippets.

@kary4
Created July 14, 2018 18:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kary4/85c2e8a1c13ea7b47e1245fbb0684ad8 to your computer and use it in GitHub Desktop.
Save kary4/85c2e8a1c13ea7b47e1245fbb0684ad8 to your computer and use it in GitHub Desktop.
<script>
jQuery( document ).ready(function() {
jQuery('.post-meta').each(function(){
var thisMeta = jQuery(this).html();
thisMeta = thisMeta.replace(/Comments/,'Comentarios');
jQuery(this).html(thisMeta);
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment