wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



format_to_post › WordPress Function

Da0.71
Deprecato3.9.0
format_to_post ( $content )
Parametri:
  • (string) $content The text to format.
    Richiesto:
Ritorna:
  • (string) The very same text.
Definito a:
Codex:

Formerly used to escape strings before inserting into the DB.

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


Sorgenti

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