format_to_post()

最后更新于:2021-11-26 04:09:11

format_to_post( string$content)

Formerly used to escape strings before inserting into the DB.

参数

$content

(string) (Required) The text to format.

响应

(string) The very same text.

源文件

文件: gc-includes/deprecated.php

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