Skip to content

Instantly share code, notes, and snippets.

@wp-seopress
Last active August 3, 2020 15:43
Show Gist options
  • Save wp-seopress/4ae4b6870679bd7f42c75b03fe143fe4 to your computer and use it in GitHub Desktop.
Save wp-seopress/4ae4b6870679bd7f42c75b03fe143fe4 to your computer and use it in GitHub Desktop.
Filter excerpt length (or beginning of post content) in metas
function sp_excerpt_length($html) {
//default: 50 words
$html = 100;
return $html;
}
add_filter('seopress_excerpt_length', 'sp_excerpt_length');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment