Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: htmledit_pre

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
263            *
264            * @param string $content Default editor content.
265            */
266           $content = apply_filters( 'the_editor_content', $content, $default_editor );
267
268           // Back-compat for the `htmledit_pre` and `richedit_pre` filters
269           if ( 'html' === $default_editor && has_filter( 'htmledit_pre' ) ) {
270                // TODO: needs _deprecated_filter(), use _deprecated_function() as substitute for now
271                _deprecated_function( 'add_filter( htmledit_pre )', '4.3.0', 'add_filter( format_for_editor )' );
272                $content = apply_filters( 'htmledit_pre', $content );
273           } elseif ( 'tinymce' === $default_editor && has_filter( 'richedit_pre' ) ) {
274                _deprecated_function( 'add_filter( richedit_pre )', '4.3.0', 'add_filter( format_for_editor )' );
275                $content = apply_filters( 'richedit_pre', $content );
276           }
277
278           if ( false !== stripos( $content, 'textarea' ) ) {
279                $content = preg_replace( '%</textarea%i', '&lt;/textarea', $content );
280           }
281