Skip to content

Instantly share code, notes, and snippets.

@propertyhive
Last active September 9, 2021 22:56
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 propertyhive/d819a0cb0203fa2d5c06d2537728510c to your computer and use it in GitHub Desktop.
Save propertyhive/d819a0cb0203fa2d5c06d2537728510c to your computer and use it in GitHub Desktop.
Change summary length output on search results page
add_filter('propertyhive_search_summary_length', 'shorter_summary');
function shorter_summary($len)
{
return 100; // nunber of characters to show
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment