mce_buttons хук-фильтрACF 1.0

Это хук WordPress - mce_buttons. Плагин его просто использует.

Filters the first-row list of TinyMCE buttons (Visual tab).

Использование

add_filter( 'mce_buttons', 'wp_kama_mce_buttons_filter', 10, 2 );

/**
 * Function for `mce_buttons` filter-hook.
 * 
 * @param array  $mce_buttons First-row list of buttons.
 * @param string $editor_id   Unique editor identifier, e.g. 'content'. Accepts 'classic-block' when called from block editor's Classic block.
 *
 * @return array
 */
function wp_kama_mce_buttons_filter( $mce_buttons, $editor_id ){

	// filter...
	return $mce_buttons;
}
$mce_buttons(массив)
First-row list of buttons.
$editor_id(строка)
Unique editor identifier, e.g. 'content'. Accepts 'classic-block' when called from block editor's Classic block.

Где вызывается хук

acf_field_wysiwyg::get_toolbars()
mce_buttons
acf/includes/fields/class-acf-field-wysiwyg.php 115
1 => apply_filters( 'mce_buttons', $mce_buttons, $editor_id ),

Где используется хук в Advanced Custom Fields PRO

Использование не найдено.