Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created April 23, 2019 13:10
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/2db8176af5eb52e390010a73b19b3c3e to your computer and use it in GitHub Desktop.
Save jchristopher/2db8176af5eb52e390010a73b19b3c3e to your computer and use it in GitHub Desktop.
Customize Custom Fields listed in SearchWP engine config UI
<?php
add_filter( 'searchwp_custom_field_keys_page', function( $meta_keys, $post_type ) {
// TODO: Customize $meta_keys to meet your needs.
return $meta_keys; // Array of meta keys to display in Custom Fields dropdown.
}, 20, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment