Advertisement
Guest User

Untitled

a guest
Sep 24th, 2015
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. $args = array(
  2.     'post_type'  => 'product',
  3.     'meta_query' => array(
  4.         'relation' => 'OR',
  5.         array(
  6.             'key'     => 'nazwa_pola_acf',
  7.             'value'   => $_POST['search'],
  8.             'compare' => 'LIKE',
  9.         ),
  10.         array(
  11.             'key'     => 'inne_pole_acf',
  12.             'value'   => $_POST['search']
  13.             'compare' => 'LIKE',
  14.         ),
  15.     ),
  16. );
  17. $query = new WP_Query( $args );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement