Changeset 27424 for trunk/src/wp-includes/formatting.php
- Timestamp:
- 03/05/2014 10:47:02 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/formatting.php
r27344 r27424 1422 1422 if ( ! $richedit ) 1423 1423 $content = esc_textarea( $content ); 1424 return $content;1425 }1426 1427 /**1428 * Holder for the 'format_to_post' filter.1429 *1430 * @since 0.711431 *1432 * @param string $content The text to pass through the filter.1433 * @return string Text returned from the 'format_to_post' filter.1434 */1435 function format_to_post($content) {1436 /**1437 * Filter the string returned by format_to_post().1438 *1439 * @since 1.2.01440 *1441 * @param string $content The string to format.1442 */1443 $content = apply_filters( 'format_to_post', $content );1444 1424 return $content; 1445 1425 }
Note: See TracChangeset
for help on using the changeset viewer.