Skip to content

Instantly share code, notes, and snippets.

@Vyygir
Created April 20, 2018 10:33
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 Vyygir/37d4206e8bf2637f97a33ac8a8874735 to your computer and use it in GitHub Desktop.
Save Vyygir/37d4206e8bf2637f97a33ac8a8874735 to your computer and use it in GitHub Desktop.
Limit the number of words used in bread "crumbs" in Yoast SEO
<?php
/**
* Limit the number of words output in a Yoast SEO bread "crumb"
*
* @param array $crumb The current "crumb" URL and text
*
* @return array
*/
add_filter('wpseo_breadcrumb_single_link_info', function($crumb) {
$word_limit = 3;
$crumb['text'] = wp_trim_words($crumb['text'], $word_limit);
return $crumb;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment