Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. $movies = all_movies(); // returns WP_Query instance
  2.  
  3. $movies = all_movies();
  4. $movies->filter(['author' => 14]); // not real code
  5.  
  6. $movies = all_movies();
  7. $new_movies = $movies->filter(['author' => 14]); // not real code
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement