Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created April 22, 2019 18:30
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/a19fbbb0acb38fac03bb72eabfe06402 to your computer and use it in GitHub Desktop.
Save jchristopher/a19fbbb0acb38fac03bb72eabfe06402 to your computer and use it in GitHub Desktop.
Prevent SearchWP from removing ACF repeatables sub-fields from the Custom Fields dropdown
<?php
add_filter( 'searchwp_acf_remove_repeatable_children', function( $remove, $context ) {
// TODO: Determine whether ACF sub-fields should be removed from the Custom Fields dropdown.
return $remove; // true/false
}, 20, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment