format_to_edit
Filters the text to be formatted for editing.
Использование
add_filter( 'format_to_edit', 'wp_kama_format_to_edit_filter' ); /** * Function for `format_to_edit` filter-hook. * * @param string $content The text, prior to formatting for editing. * * @return string */ function wp_kama_format_to_edit_filter( $content ){ // filter... return $content; }
- $content(строка)
- The text, prior to formatting for editing.
Список изменений
С версии 1.2.0 | Введена. |
Где вызывается хук
format_to_edit
wp-includes/formatting.php 2746
$content = apply_filters( 'format_to_edit', $content );