Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codehaiku/f6b6c9c9be6a671e937d3a856b4ad283 to your computer and use it in GitHub Desktop.
Save codehaiku/f6b6c9c9be6a671e937d3a856b4ad283 to your computer and use it in GitHub Desktop.
<?php
function my_bp_loop_querystring( $query_string, $object ) {
if ( ! empty( $query_string ) ) {
$query_string .= '&';
}
$query_string .= 'type=alphabetical';
return $query_string;
}
add_action( 'bp_ajax_querystring', 'my_bp_loop_querystring', 20, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment