Advertisement
sonars

Untitled

Jul 13th, 2020
1,239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.60 KB | None | 0 0
  1. $args = array(
  2.                         'posts_per_page' => -1,
  3.                         'post_type'      => 'product',
  4.                         'meta_query' => array(
  5.                             array(
  6.                                 'key' => 'teach__timer',
  7.                                 'value' => $date_now,
  8.                                 'compare' => '>',
  9.                                 'type' => 'DATETIME'
  10.                             ),
  11.                         ),
  12.                         'order'          => 'ASC',
  13.                         'orderby'        => 'meta_value',
  14.                         'meta_key'       => 'teach__timer',
  15.                         'meta_type'      => 'DATETIME'
  16.                     );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement