Skip to content

Instantly share code, notes, and snippets.

@imath
Created September 3, 2015 06:26
Show Gist options
  • Save imath/9390548b80ee24809946 to your computer and use it in GitHub Desktop.
Save imath/9390548b80ee24809946 to your computer and use it in GitHub Desktop.
Add BuddyDrive editor to the BuddyPress compose private message screen, the button will appear over the submit one
<?php
function test_bp_message_compose() {
// Always check the editor is available to prevent fatals!
if ( bp_is_my_profile() && function_exists( 'buddydrive_editor' ) ) {
// 'message_content' is the id attribute of the textarea to send private messages
buddydrive_editor( 'message_content' );
}
}
add_action( 'bp_after_messages_compose_content', 'test_bp_message_compose' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment