Skip to content

Instantly share code, notes, and snippets.

@blakemiller99
blakemiller99 / custom-acf-json-paths.php
Last active August 12, 2023 12:33 — forked from lgladdy/custom-acf-json-paths.php
ACF 6.2 custom load and save paths for ACF JSON
<?php
add_filter( 'acf/json/load_paths', 'set_custom_json_load_paths' );
function set_custom_json_load_paths( $paths ) {
$paths[] = ABSBATH . '/wp-content/uploads/acf-json/post-types';
$paths[] = ABSBATH . '/wp-content/uploads/acf-json/field-groups';
$paths[] = ABSBATH . '/wp-content/uploads/acf-json/taxonomies';
$paths[] = ABSBATH . '/wp-content/uploads/acf-json/option-pages';
return $paths;
}