sbrajesh

Brajesh Singh

Dec 2nd, 2010
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. function members_alpha_by_default( $query_string ) {
  2. global $bp;
  3.  
  4. if ( $bp->current_component == BP_MEMBERS_SLUG && !$bp->current_action)
  5. $query_string .= 'type=alphabetical&action=alphabetical';//append this
  6.  
  7. return $query_string;
  8. }
  9. add_filter( 'bp_dtheme_ajax_querystring', 'members_alpha_by_default',50 );//change priority
Add Comment
Please, Sign In to add comment