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



format_to_post › WordPress Function

Depuis0.71
Dépréciée3.9.0
format_to_post ( $content )
Paramètres:
  • (string) $content The text to format.
    Requis: Oui
Retourne:
  • (string) The very same text.
Défini(e) dans:
Codex:

Formerly used to escape strings before inserting into the DB.

Has not performed this function for many, many years. Use wpdb::prepare() instead.


Source

function format_to_post( $content ) {
	_deprecated_function( __FUNCTION__, '3.9.0' );
	return $content;
}