Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save prosantamazumder/4883c8e053e3ff1dd3ee9388eeb08774 to your computer and use it in GitHub Desktop.
Save prosantamazumder/4883c8e053e3ff1dd3ee9388eeb08774 to your computer and use it in GitHub Desktop.
//Main functions codex.wordpress.org
wp_trim_words( string $text, int $num_words = 55, string $more = null );
//Variable
$text = get_the_content();
$num_words = 12;
$more = '<a class="className" href="'.get_permalink( get_the_ID() ).'"> Read More</a>';
//Apply HTML OR Diplay front-end
<p><?php echo wp_trim_words( $text, $num_words, $more ); ?></p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment