format_to_post()
Устарела с версии 3.9.0. Больше не поддерживается и может быть удалена. Рекомендуется заменить эту функцию на аналог.
Formerly used to escape strings before inserting into the DB.
Has not performed this function for many, many years. Use wpdb::prepare() instead.
Хуков нет.
Возвращает
Строку
. The very same text.
Использование
format_to_post( $content );
- $content(строка) (обязательный)
- The text to format.
Список изменений
С версии 0.71 | Введена. |
Устарела с | 3.9.0 |
Код format_to_post() format to post WP 6.6.1
function format_to_post( $content ) { _deprecated_function( __FUNCTION__, '3.9.0' ); return $content; }