Skip to content

Instantly share code, notes, and snippets.

@kibria-khandaker
Created August 26, 2019 09:14
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 kibria-khandaker/50a19b6b9f7e1df6d9c5b713d20a670d to your computer and use it in GitHub Desktop.
Save kibria-khandaker/50a19b6b9f7e1df6d9c5b713d20a670d to your computer and use it in GitHub Desktop.
replece the_excerpt code with $text_limit code where are you used <?php the_excerpt(); ?>
<?php the_excerpt(); ?>
replece the_excerpt code under the with $text_limit code where are you used the_excerpt
<?php
$text_limit = substr(get_the_excerpt(), 0, 100);
echo $text_limit;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment