Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: the_editor_content

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
261           /**
262            * Filters the default editor content.
263            *
264            * @since 2.1.0
265            *
266            * @param string $content        Default editor content.
267            * @param string $default_editor The default editor for the current user.
268            *                               Either 'html' or 'tinymce'.
269            */
270           $content = apply_filters( 'the_editor_content', $content, $default_editor );
271
272           // Remove the filter as the next editor on the same page may not need it.
273           if ( self::$this_tinymce ) {
274                remove_filter( 'the_editor_content', 'format_for_editor' );
275           }
276
277           // Back-compat for the `htmledit_pre` and `richedit_pre` filters
278           if ( 'html' === $default_editor && has_filter( 'htmledit_pre' ) ) {
279                // TODO: needs _deprecated_filter(), use _deprecated_function() as substitute for now