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