bp_nouveau_btn_invites_mce_buttons( array $buttons = array() )
Disable the WP Editor buttons not allowed in invites content.
Description
Parameters
- $buttons
-
(Optional) The WP Editor buttons list.
Default value: array()
Return
(array) The filtered WP Editor buttons list.
Source
File: bp-members/bp-members-functions.php
function bp_nouveau_btn_invites_mce_buttons( $buttons = array() ) {
$remove_buttons = array(
'wp_more',
'spellchecker',
'wp_adv',
'fullscreen',
'alignleft',
'alignright',
'aligncenter',
'formatselect',
);
// Remove unused buttons
$buttons = array_diff( $buttons, $remove_buttons );
// Add the image button
//array_push( $buttons, 'image' );
return $buttons;
}
Changelog
| Version | Description |
|---|---|
| BuddyBoss 1.0.0 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.