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
476      if ( $disable_captions ) {
477           $tinymce_settings['wpeditimage_disable_captions'] = true;
478      }
479
480      if ( ! empty( $editor_settings['tinymce'] ) && is_array( $editor_settings['tinymce'] ) ) {
481           array_merge( $tinymce_settings, $editor_settings['tinymce'] );
482      }
483
484      /** This filter is documented in wp-includes/class-wp-editor.php */
485      $tinymce_settings = apply_filters( 'tiny_mce_before_init', $tinymce_settings, 'classic-block' );
486
487      // Do "by hand" translation from PHP array to js object.
488      // Prevents breakage in some custom settings.
489      $init_obj = '';
490      foreach ( $tinymce_settings as $key => $value ) {
491           if ( is_bool( $value ) ) {
492                $val       = $value ? 'true' : 'false';
493                $init_obj .= $key . ':' . $val . ',';
494                continue;