wpseek.com
A WordPress-centric search engine for devs and theme authors
wp_htmledit_pre is deprecated since version 4.3.0!
Alternative: format_for_editor()
Alternative: format_for_editor()
wp_htmledit_pre › WordPress Function
Since2.5.0
Deprecated4.3.0
› wp_htmledit_pre ( $output )
| Parameters: |
|
| See: | |
| Returns: |
|
| Defined at: |
|
| Codex: |
Formats text for the HTML editor.
Unless $output is empty it will pass through htmlspecialchars before the {@see 'htmledit_pre'} filter is applied.Source
function wp_htmledit_pre($output) {
_deprecated_function( __FUNCTION__, '4.3.0', 'format_for_editor()' );
if ( !empty($output) )
$output = htmlspecialchars($output, ENT_NOQUOTES, get_option( 'blog_charset' ) ); // Convert only '< > &'.
/**
* Filters the text before it is formatted for the HTML editor.
*
* @since 2.5.0
* @deprecated 4.3.0
*
* @param string $output The HTML-formatted text.
*/
return apply_filters( 'htmledit_pre', $output );
}