Guest User

Untitled

a guest
Mar 17th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. $args = array(
  2. 'post_type' => 'post' ,
  3. 'meta_key' => $meta_value,
  4. 'orderby' => $sort . ' date',
  5. 'order' => $order_sort,
  6. 'posts_per_page' => 10,
  7. 'cat' => $category,
  8. 'paged' => $paged,
  9.  
  10.  
  11.  
  12. 'meta_query' => array(
  13. 'relation' => 'OR',
  14. array(
  15. 'key' => 'checkboxes',
  16. 'value' => $face,
  17. 'compare' => 'LIKE'
  18. ),
  19. array(
  20. 'key' => 'checkboxes',
  21. 'value' => $twitter,
  22. 'compare' => 'LIKE'
  23. ),
  24. array(
  25. 'key' => 'checkboxes',
  26. 'value' => $telegram,
  27. 'compare' => 'LIKE'
  28. ),
  29. array(
  30. 'key' => 'checkboxes',
  31. 'value' => $reddit,
  32. 'compare' => 'LIKE'
  33. ),
  34. array(
  35. 'key' => 'checkboxes',
  36. 'value' => $email,
  37. 'compare' => 'LIKE'
  38. ),
  39. array(
  40. 'key' => 'checkboxes',
  41. 'value' => $phone,
  42. 'compare' => 'LIKE'
  43. ),
  44.  
  45. )
  46.  
  47.  
  48. );
Add Comment
Please, Sign In to add comment