Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: How to order members list alphabetically by default


perywinkle
Participant

@perywinkle

This kinda worked, but then I lost the ability to filter by alphabetical, last active etc.
But if your looking to NOT filter it might be a solution.
`
<?php /* My Custom Member Query */
function my_query_filter_new ( $query_string ) {
$query_string .= ‘&per_page=15&type=newest’;
return $query_string;
}
add_filter( ‘bp_ajax_querystring’, ‘my_query_filter_new’ );
?>

`

Skip to toolbar