Skip to content

Instantly share code, notes, and snippets.

@rabbitinblack
Last active February 12, 2021 05:32
Show Gist options
  • Save rabbitinblack/63d9932d57718c1fe6686222967d87f8 to your computer and use it in GitHub Desktop.
Save rabbitinblack/63d9932d57718c1fe6686222967d87f8 to your computer and use it in GitHub Desktop.
Limit length of title in Breadcrumb NavXT plugin.
/**
* This function uses with Breadcrumb NavXT.
* This function uses for limit length of title in breadcrumb.
* Put this code in functions.php
*/
function limit_length_breadcrumb_title( $title, $type, $id ) {
$length = 50;
$title = mb_strimwidth($title, 0, $length, '...');
return $title;
}
add_filter('bcn_breadcrumb_title', 'limit_length_breadcrumb_title', 10, 3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment