Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created April 24, 2019 18:46
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/164156b79a9bd186ff4132a5cc6d2b7c to your computer and use it in GitHub Desktop.
Save jchristopher/164156b79a9bd186ff4132a5cc6d2b7c to your computer and use it in GitHub Desktop.
Customize the ACF Repeatables Custom Fields meta group in SearchWP
<?php
// Customize the ACF Repeatables Custom Fields meta group in SearchWP.
add_filter( 'searchwp_meta_groups_acf_repeatables', function( $meta_groups, $args ) {
// $meta_groups contains the ACF repeatables as defined by SearchWP.
return $meta_groups;
}, 20, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment