Skip to content

Instantly share code, notes, and snippets.

@Rubsel
Created October 23, 2019 10:18
Show Gist options
  • Save Rubsel/2adc5df1864177a231f65466df0f02ac to your computer and use it in GitHub Desktop.
Save Rubsel/2adc5df1864177a231f65466df0f02ac to your computer and use it in GitHub Desktop.
Get ACF field groups from parent.
<?php
add_filter('acf/settings/load_json', 'parent_theme_acf_load');
function parent_theme_acf_load($paths) {
// Locate the parent template directory
$path = get_template_directory().'/acf-json';
$paths[] = $path;
return $paths;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment