Guest User

Untitled

a guest
Mar 18th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. function getParents($childPostId, $parentPostType, $acfKey) {
  2. return get_posts(array(
  3. 'post_type' => $parentPostType,
  4. 'meta_query' => array(
  5. array(
  6. 'key' => $acfKey,
  7. 'value' => '"' . $childPostId . '"',
  8. 'compare' => 'LIKE'
  9. )
  10. )
  11. ));
  12. }
Add Comment
Please, Sign In to add comment