Advertisement
Guest User

Untitled

a guest
Jul 14th, 2014
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. add_filter('acf/load_field/name=select_a_county',array(&$this, 'acf_load_select_county'));
  2. add_filter('acf/load_value/name=select_state', array(&$this, 'acf_load_states'), 10, 3);
  3.  
  4.  
  5. function acf_load_select_county($field) {
  6. global $snah;
  7.  
  8. }
  9.  
  10. function acf_load_states($value) {
  11. global $snah;
  12. $snah = $value;
  13. return $value;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement