Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@aaronsummers
Created October 14, 2019 09:39
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 aaronsummers/3c1a7a7126eb9d7bae1ab4b6d0146e57 to your computer and use it in GitHub Desktop.
Save aaronsummers/3c1a7a7126eb9d7bae1ab4b6d0146e57 to your computer and use it in GitHub Desktop.
Custom excerpt length
<?php
$excerpt = get_the_excerpt();
echo ( strlen($excerpt) > 40 ) ? mb_substr($excerpt, 0, 40, "utf-8") ."..." : $excerpt;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment