WordPress Hooks Explorer

Listing all hooks extracted WordPress Core


Details about mce_external_languages

Back to home

Files

Filename Hook Type Line Number PHP Doc
wp-includes/class-wp-editor.php apply_filters 483 /**
* Filters the translations loaded for external TinyMCE 3.x plugins.
*
* The filter takes an associative array ('plugin_name' => 'path')
* where 'path' is the include path to the file.
*
* The language file should follow the same format as wp_mce_translation(),
* and should define a variable ($strings) that holds all translated strings.
*
* @since 2.5.0
* @since 5.3.0 The `$editor_id` parameter was added.
*
* @param array $translations Translations for external TinyMCE plugins.
* @param string $editor_id Unique editor identifier, e.g. 'content'.
*/

Hook Parameters

Parameter Type Name Description
array $translations Translations for external TinyMCE plugins.
string $editor_id Unique editor identifier, e.g. 'content'.