wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



format_to_edit › WordPress Function

Depuis0.71
Dépréciéen/a
format_to_edit ( $content, $rich_text = false )
Paramètres: (2)
  • (string) $content The text about to be edited.
    Requis: Oui
  • (bool) $rich_text Optional. Whether `$content` should be considered rich text, in which case it would not be passed through esc_textarea(). Default false.
    Requis: Non
    Défaut: false
Retourne:
  • (string) The text after the filter (and possibly htmlspecialchars()) has been run.
Défini(e) dans:
Codex:
Changelog:
  • 4.4.0

Acts on text which is about to be edited.

The $content is run through esc_textarea(), which uses htmlspecialchars() to convert special characters to HTML entities. If $richedit is set to true, it is simply a holder for the {@see 'format_to_edit'} filter.


Source

function format_to_edit( $content, $rich_text = false ) {
	/**
	 * Filters the text to be formatted for editing.
	 *
	 * @since 1.2.0
	 *
	 * @param string $content The text, prior to formatting for editing.
	 */
	$content = apply_filters( 'format_to_edit', $content );
	if ( ! $rich_text ) {
		$content = esc_textarea( $content );
	}
	return $content;
}