Changeset 51003 for trunk/src/wp-includes/default-filters.php
- Timestamp:
- 05/25/2021 02:19:14 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/default-filters.php
r50973 r51003 556 556 add_action( 'wp_footer', 'wp_maybe_inline_styles', 1 ); // Run for late-loaded styles in the footer. 557 557 558 add_action( 'admin_footer-post.php', 'wp_add_iframed_editor_assets_html' ); 559 add_action( 'admin_footer-post-new.php', 'wp_add_iframed_editor_assets_html' ); 560 558 561 // Taxonomy. 559 562 add_action( 'init', 'create_initial_taxonomies', 0 ); // Highest priority. … … 634 637 add_filter( 'user_has_cap', 'wp_maybe_grant_site_health_caps', 1, 4 ); 635 638 639 // Block Templates CPT and Rendering 640 add_filter( 'render_block_context', '_block_template_render_without_post_block_context' ); 641 add_filter( 'pre_wp_unique_post_slug', 'wp_filter_wp_template_unique_post_slug', 10, 5 ); 642 add_action( 'wp_footer', 'the_block_template_skip_link' ); 643 636 644 unset( $filter, $action );
Note: See TracChangeset
for help on using the changeset viewer.