Advertisement
Guest User

Untitled

a guest
May 27th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. add_action('pre_get_comments', function($query)
  2. {
  3. global $pagenow;
  4. if ( is_admin() && ('your-custom-page' === $pagenow) ) {
  5. $query->query_vars['meta_query'] = [
  6. 'relation' => 'AND',
  7. [
  8. 'key' => 'key1',
  9. 'value' => 'meta1'
  10. ],
  11. [
  12. 'key' => 'key2',
  13. 'value' => 'meta2'
  14. ]
  15. ];
  16. }
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement