Guest User

Untitled

a guest
Nov 19th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. $top_authors = array(3) {
  2. [0] => array(2) {
  3. ["id"]=> string(1) "1"
  4. ["sale"]=> int(20)
  5. }
  6.  
  7. [1] => array(2) {
  8. ["id"]=> string(1) "3"
  9. ["sale"]=> int(5)
  10. }
  11.  
  12. [2] => array(2) {
  13. ["id"]=> string(1) "12"
  14. ["sale"]=> int(125)
  15. }
  16. }
  17.  
  18. $args = apply_filters( 'theme_hook_top_authors_query',
  19. array(
  20. 'number' => 10,
  21. 'include' => implode(',', $author_ids),
  22. 'orderby' => 'include'
  23. )
  24. );
  25.  
  26. $user_query = new WP_User_Query( $args );
Add Comment
Please, Sign In to add comment