Changeset 47554 for trunk/src/wp-includes/default-filters.php
- Timestamp:
- 04/08/2020 12:53:18 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/default-filters.php
r47455 r47554 176 176 add_filter( 'the_content', 'shortcode_unautop' ); 177 177 add_filter( 'the_content', 'prepend_attachment' ); 178 add_filter( 'the_content', 'wp_ make_content_images_responsive' );178 add_filter( 'the_content', 'wp_filter_content_tags' ); 179 179 180 180 add_filter( 'the_excerpt', 'wptexturize' ); … … 183 183 add_filter( 'the_excerpt', 'wpautop' ); 184 184 add_filter( 'the_excerpt', 'shortcode_unautop' ); 185 add_filter( 'the_excerpt', 'wp_filter_content_tags' ); 185 186 add_filter( 'get_the_excerpt', 'wp_trim_excerpt', 10, 2 ); 186 187 … … 208 209 add_filter( 'widget_text_content', 'wpautop' ); 209 210 add_filter( 'widget_text_content', 'shortcode_unautop' ); 211 add_filter( 'widget_text_content', 'wp_filter_content_tags' ); 210 212 add_filter( 'widget_text_content', 'do_shortcode', 11 ); // Runs after wpautop(); note that $post global will be null when shortcodes run. 211 213
Note: See TracChangeset
for help on using the changeset viewer.