bp_nouveau_messages_mce_buttons( array $buttons = array() )

Disable the WP Editor buttons not allowed in messages content.

Description

Parameters

$buttons

(array) (Optional) The WP Editor buttons list.

Default value: array()

(array) (Required) The filtered WP Editor buttons list.

Source

File: bp-templates/bp-nouveau/includes/messages/functions.php

function bp_nouveau_messages_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

Changelog
Version Description
BuddyPress 3.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.