Changeset 48432
- Timestamp:
- 07/10/2020 11:26:31 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/formatting.php
r48199 r48432 2145 2145 2146 2146 /** 2147 * Sanitizes a title, or returns a fallback title. 2148 * 2149 * Specifically, HTML and PHP tags are stripped. Further actions can be added 2150 * via the plugin API. If $title is empty and $fallback_title is set, the latter 2147 * Sanitizes a string into a slug, which can be used in places such as URLs or HTML attributes. 2148 * 2149 * In a save context, converts accents to ASCII characters. By default, output is 2150 * further limited to alphanumeric characters, underscore (_) and dash (-) through the 2151 * 'sanitize_title' filter. If $title is empty and $fallback_title is set, the latter 2151 2152 * will be used. 2152 2153 *
Note: See TracChangeset
for help on using the changeset viewer.