Last active
November 9, 2022 19:24
-
-
Save dcavins/06364c06c1b47aa72512a25d103b6350 to your computer and use it in GitHub Desktop.
Enable BuddyPress Docs folders for all contexts (not just groups which is the default)
This file contains 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 | |
// Enables folders for group, user, and global doc directories. | |
add_filter( 'bp_docs_enable_folders_for_current_context', '__return_true' ); | |
// Shows the folder metabox on the doc edit screen. | |
add_filter( 'bp_docs_folders_force_metabox', '__return_true' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment