Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: tiny_mce_before_init

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
503      if ( $disable_captions ) {
504           $tinymce_settings['wpeditimage_disable_captions'] = true;
505      }
506
507      if ( ! empty( $editor_settings['tinymce'] ) && is_array( $editor_settings['tinymce'] ) ) {
508           array_merge( $tinymce_settings, $editor_settings['tinymce'] );
509      }
510
511      /** This filter is documented in wp-includes/class-wp-editor.php */
512      $tinymce_settings = apply_filters( 'tiny_mce_before_init', $tinymce_settings, 'classic-block' );
513
514      // Do "by hand" translation from PHP array to js object.
515      // Prevents breakage in some custom settings.
516      $init_obj = '';
517      foreach ( $tinymce_settings as $key => $value ) {
518           if ( is_bool( $value ) ) {
519                $val       = $value ? 'true' : 'false';
520                $init_obj .= $key . ':' . $val . ',';
521                continue;