Guest User

Untitled

a guest
Feb 23rd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <?php
  2.  
  3. add_filter('acf/settings/save_json', 'my_acf_json_save_point');
  4.  
  5. function my_acf_json_save_point( $path ) {
  6.  
  7. // update path
  8. $path = get_stylesheet_directory() . '/my-custom-folder';
  9.  
  10.  
  11. // return
  12. return $path;
  13.  
  14. }
  15.  
  16. ?>
Add Comment
Please, Sign In to add comment