Advertisement
Guest User

Untitled

a guest
Jan 19th, 2020
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1.  
  2. add_filter('acf/load_field_groups', function($field_groups){
  3.  
  4. foreach( $field_groups as $key => $group ){
  5.  
  6. if( isset($group['key']) && $group['key'] === 'group_5c4f2dec3824e' ){
  7.  
  8. if( isset($group['location'][0][0]['param']) && $group['location'][0][0]['param'] === 'nav_menu_item' ){
  9. $field_groups[$key]['location'][0][0]['value'] = 'all';
  10. }
  11.  
  12. }
  13. }
  14.  
  15. return $field_groups;
  16. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement