wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



format_to_post › WordPress Function

Seit0.71
Veraltet3.9.0
format_to_post ( $content )
Parameter:
  • (string) $content The text to format.
    Erforderlich: Ja
Gibt zurück:
  • (string) The very same text.
Definiert in:
Codex:

Formerly used to escape strings before inserting into the DB.

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


Quellcode

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