Created
July 11, 2017 16:25
-
-
Save dcavins/5e401173ea756f6c9fa379d7de3dcd92 to your computer and use it in GitHub Desktop.
Order BP Doc attachment list alphabetically by title.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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