Changeset 35904
- Timestamp:
- 12/13/2015 07:21:32 PM (9 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-editor.php
r35660 r35904 262 262 * @since 2.1.0 263 263 * 264 * @param string $content Default editor content. 264 * @param string $content Default editor content. 265 * @param string $default_editor The default editor for the current user. 266 * Either 'html' or 'tinymce'. 265 267 */ 266 268 $content = apply_filters( 'the_editor_content', $content, $default_editor ); -
trunk/src/wp-includes/formatting.php
r35848 r35904 3269 3269 * @since 4.3.0 3270 3270 * 3271 * @param string $text The text to be formatted. 3271 * @see _WP_Editors::editor() 3272 * 3273 * @param string $text The text to be formatted. 3274 * @param string $default_editor The default editor for the current user. 3275 * It is usually either 'html' or 'tinymce'. 3272 3276 * @return string The formatted text after filter is applied. 3273 3277 */ … … 3282 3286 * @since 4.3.0 3283 3287 * 3284 * @param string $text The formatted text. 3288 * @param string $text The formatted text. 3289 * @param string $default_editor The default editor for the current user. 3290 * It is usually either 'html' or 'tinymce'. 3285 3291 */ 3286 3292 return apply_filters( 'format_for_editor', $text, $default_editor );
Note: See TracChangeset
for help on using the changeset viewer.