Advertisement
Guest User

Untitled

a guest
Jul 25th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4. * Limit numbers of questions to display in base page.
  5. *
  6. * @param array $args WP_Query arguments.
  7. * @return array
  8. */
  9. function my_limit_questions( $args ) {
  10. $args['posts_per_page'] = 3;
  11. return $args;
  12. }
  13.  
  14. add_filter( 'ap_main_questions_args', 'my_limit_questions' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement