Skip to content

Instantly share code, notes, and snippets.

@dcavins
Created July 11, 2017 16:25
Show Gist options
  • Select an option

  • Save dcavins/5e401173ea756f6c9fa379d7de3dcd92 to your computer and use it in GitHub Desktop.

Select an option

Save dcavins/5e401173ea756f6c9fa379d7de3dcd92 to your computer and use it in GitHub Desktop.
Order BP Doc attachment list alphabetically by title.
<?php
add_filter( 'bp_docs_get_doc_attachments_args', 'dc_order_docs_attachments_by_title' );
function dc_order_docs_attachments_by_title( $args ) {
$args['orderby'] = 'title';
$args['order'] = 'ASC';
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment