Guest User

Untitled

a guest
Feb 23rd, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <?php
  2.  
  3. add_filter('acf/settings/load_json', 'my_acf_json_load_point');
  4.  
  5. function my_acf_json_load_point( $paths ) {
  6.  
  7. // remove original path (optional)
  8. unset($paths[0]);
  9.  
  10.  
  11. // append path
  12. $paths[] = get_stylesheet_directory() . '/my-custom-folder';
  13.  
  14.  
  15. // return
  16. return $paths;
  17.  
  18. }
  19.  
  20. ?>
Add Comment
Please, Sign In to add comment