Guest User

Untitled

a guest
Jul 20th, 2018
74
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. function my_bp_loop_querystring( $query_string, $object ) {
  4.  
  5. if ( ! empty( $query_string ) ) {
  6. $query_string .= '&';
  7. }
  8.  
  9. $query_string .= 'type=alphabetical';
  10.  
  11. return $query_string;
  12.  
  13. }
  14.  
  15. add_action( 'bp_ajax_querystring', 'my_bp_loop_querystring', 20, 2 );
Add Comment
Please, Sign In to add comment