Skip to content

Instantly share code, notes, and snippets.

@Tmeister
Created August 31, 2016 19:00
Show Gist options
  • Save Tmeister/5514299d1ccd8f8e740e4feebd6e2ffd to your computer and use it in GitHub Desktop.
Save Tmeister/5514299d1ccd8f8e740e4feebd6e2ffd to your computer and use it in GitHub Desktop.
<?php
$content = get_the_content(); // O de donde obtengas tu contenido https://codex.wordpress.org/Function_Reference/get_the_content.
$tagless = wp_strip_all_tags( $content ); // Remueve las etiquetas HTML https://codex.wordpress.org/Function_Reference/wp_strip_all_tags
$short = substr( $tagless, 0, 100); // "Corta" el texto del 0 al 100 http://php.net/manual/en/function.substr.php
echo $short;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment