Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. add_filter('acf/fields/relationship/query/name=runorder_main', 'relationship_options_filter', 10, 3);
  2.  
  3. function relationship_options_filter($options, $field, $the_post) {
  4.  
  5. $options['post_status'] = array('publish');
  6.  
  7. return $options;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement