Advertisement
verygoodplugins

Untitled

Dec 7th, 2021
1,093
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1.             $args = array(
  2.                 'post_type'      => $post_types,
  3.                 'posts_per_page' => 200, // 200 sounds like a safe place for performance?
  4.                 'fields'         => 'ids',
  5.                 'meta_query'     => array(
  6.                     array(
  7.                         'key'     => 'wpf-settings',
  8.                         'compare' => 'EXISTS',
  9.                     ),
  10.                 ),
  11.             );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement