Skip to content

Instantly share code, notes, and snippets.

@sibaberpollo
Created November 24, 2015 19:31
Show Gist options
  • Save sibaberpollo/1bce08dee8b95d18a7b1 to your computer and use it in GitHub Desktop.
Save sibaberpollo/1bce08dee8b95d18a7b1 to your computer and use it in GitHub Desktop.
jQuery para acortar los intro (the_excerpt()) de Wordpress. Muy útil con Visual Composer.
<script type="text/javascript">
jQuery(window).bind("load", function() {
jQuery(".proy-descripcion").text(function(index, currentText) {
//return currentText.substr(0, 75);
return currentText.substr(0, 75) + ' ...';
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment