Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created August 14, 2019 19:21
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 jchristopher/a1078fa5a235bd3622efe53ae47a542f to your computer and use it in GitHub Desktop.
Save jchristopher/a1078fa5a235bd3622efe53ae47a542f to your computer and use it in GitHub Desktop.
Customize the keywords used by SearchWP Related
<?php
add_filter( 'searchwp_related_keywords', function( $terms, $post_id ) {
// $terms is what's currently stored as the keywords.
// TODO: Customize $terms to be the string of terms you _want_ to use.
return $terms;
}, 21, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment