Changeset 53266 for trunk/src/wp-admin/includes/admin-filters.php
- Timestamp:
- 04/26/2022 06:30:24 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/admin-filters.php
r53228 r53266 13 13 // Dashboard hooks. 14 14 add_action( 'activity_box_end', 'wp_dashboard_quota' ); 15 add_action( 'welcome_panel', 'wp_welcome_panel' ); 15 16 16 17 // Media hooks. … … 37 38 add_filter( 'media_upload_tabs', 'update_gallery_tab' ); 38 39 40 // Admin color schemes. 41 add_action( 'admin_head', 'wp_color_scheme_settings' ); 42 add_action( 'admin_color_scheme_picker', 'admin_color_scheme_picker' ); 43 39 44 // Misc hooks. 40 45 add_action( 'admin_init', 'wp_admin_headers' ); 41 46 add_action( 'login_init', 'wp_admin_headers' ); 42 47 add_action( 'admin_head', 'wp_admin_canonical_url' ); 43 add_action( 'admin_head', 'wp_color_scheme_settings' );44 48 add_action( 'admin_head', 'wp_site_icon' ); 45 49 add_action( 'admin_head', 'wp_admin_viewport_meta' ); 46 50 add_action( 'customize_controls_head', 'wp_admin_viewport_meta' ); 51 add_filter( 'nav_menu_meta_box_object', '_wp_nav_menu_meta_box_object' ); 47 52 48 53 // Prerendering. … … 70 75 71 76 add_filter( 'heartbeat_settings', 'wp_heartbeat_set_suspension' ); 77 78 add_action( 'use_block_editor_for_post_type', '_disable_block_editor_for_navigation_post_type', 10, 2 ); 79 add_action( 'edit_form_after_title', '_disable_content_editor_for_navigation_post_type' ); 80 add_action( 'edit_form_after_editor', '_enable_content_editor_for_navigation_post_type' ); 72 81 73 82 // Nav Menu hooks.
Note: See TracChangeset
for help on using the changeset viewer.