Changeset 61866
- Timestamp:
- 03/08/2026 11:47:58 PM (5 days ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
-
wp-admin/includes/admin-filters.php (modified) (2 diffs)
-
wp-includes/default-filters.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/admin-filters.php
r61030 r61866 54 54 // Prerendering. 55 55 if ( ! is_customize_preview() ) { 56 add_ filter( 'admin_print_styles', 'wp_resource_hints', 1 );56 add_action( 'admin_print_styles', 'wp_resource_hints', 1 ); 57 57 } 58 58 … … 86 86 add_filter( 'heartbeat_settings', 'wp_heartbeat_set_suspension' ); 87 87 88 add_ action( 'use_block_editor_for_post_type', '_disable_block_editor_for_navigation_post_type', 10, 2 );88 add_filter( 'use_block_editor_for_post_type', '_disable_block_editor_for_navigation_post_type', 10, 2 ); 89 89 add_action( 'edit_form_after_title', '_disable_content_editor_for_navigation_post_type' ); 90 90 add_action( 'edit_form_after_editor', '_enable_content_editor_for_navigation_post_type' ); -
trunk/src/wp-includes/default-filters.php
r61833 r61866 386 386 // Login actions. 387 387 add_action( 'login_head', 'wp_robots', 1 ); 388 add_ filter( 'login_head', 'wp_resource_hints', 8 );388 add_action( 'login_head', 'wp_resource_hints', 8 ); 389 389 add_action( 'login_head', 'wp_print_head_scripts', 9 ); 390 390 add_action( 'login_head', 'print_admin_styles', 9 );
Note: See TracChangeset
for help on using the changeset viewer.