Changeset 56845
- Timestamp:
- 10/12/2023 01:25:48 PM (13 months ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/blocks.php
r56839 r56845 2029 2029 return $arg; 2030 2030 } 2031 2032 add_action( 'init', '_wp_footnotes_kses_init' );2033 add_action( 'set_current_user', '_wp_footnotes_kses_init' );2034 add_filter( 'force_filtered_html_on_import', '_wp_footnotes_force_filtered_html_on_import_filter', 999 ); -
trunk/src/wp-includes/default-filters.php
r56793 r56845 614 614 615 615 /* 616 * Block specific actions and filters. 617 */ 618 619 // Footnotes Block. 620 add_action( 'init', '_wp_footnotes_kses_init' ); 621 add_action( 'set_current_user', '_wp_footnotes_kses_init' ); 622 add_filter( 'force_filtered_html_on_import', '_wp_footnotes_force_filtered_html_on_import_filter', 999 ); 623 624 /* 616 625 * Disable "Post Attributes" for wp_navigation post type. The attributes are 617 626 * also conditionally enabled when a site has custom templates. Block Theme
Note: See TracChangeset
for help on using the changeset viewer.