Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created April 24, 2019 18:46
Embed
What would you like to do?
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