mce_buttons_3 хук-фильтрWP 2.0.0

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

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

add_filter( 'mce_buttons_3', 'wp_kama_mce_buttons_3_filter', 10, 2 );

/**
 * Function for `mce_buttons_3` filter-hook.
 * 
 * @param array  $mce_buttons_3 Third-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_3_filter( $mce_buttons_3, $editor_id ){

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

Список изменений

С версии 2.0.0 Введена.
С версии 3.3.0 The $editor_id parameter was added.

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

_WP_Editors::editor_settings()
mce_buttons_3
wp_tinymce_inline_scripts()
mce_buttons_3
wp-includes/class-wp-editor.php 719
$mce_buttons_3 = apply_filters( 'mce_buttons_3', array(), $editor_id );
wp-includes/script-loader.php 597
$toolbar3 = apply_filters( 'mce_buttons_3', array(), 'classic-block' );

Где используется хук в WordPress

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