Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created February 14, 2019 17:40
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/45c6cfa86db12f8eb22296bc29643146 to your computer and use it in GitHub Desktop.
Save jchristopher/45c6cfa86db12f8eb22296bc29643146 to your computer and use it in GitHub Desktop.
Customize which meta keys are used for highlighting when finding better excerpts
<?php
function my_searchwp_th_meta_keys( $meta_keys ) {
// TODO: update $meta_keys if necessary.
return $meta_keys;
}
add_filter( 'searchwp_th_meta_keys', 'my_searchwp_th_meta_keys' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment