Changeset 57009 for trunk/src/wp-includes/default-filters.php
- Timestamp:
- 10/26/2023 06:42:46 PM (15 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/default-filters.php
r56932 r57009 522 522 // Theme. 523 523 add_action( 'setup_theme', 'create_initial_theme_features', 0 ); 524 add_action( ' setup_theme', '_add_default_theme_supports', 1 );524 add_action( 'after_setup_theme', '_add_default_theme_supports', 1 ); 525 525 add_action( 'wp_loaded', '_custom_header_background_just_in_time' ); 526 526 add_action( 'wp_head', '_custom_logo_header_styles' ); … … 719 719 add_action( 'wp_enqueue_scripts', 'wp_enqueue_block_template_skip_link' ); 720 720 add_action( 'wp_footer', 'the_block_template_skip_link' ); // Retained for backwards-compatibility. Unhooked by wp_enqueue_block_template_skip_link(). 721 add_action( ' setup_theme', 'wp_enable_block_templates');721 add_action( 'after_setup_theme', 'wp_enable_block_templates', 1 ); 722 722 add_action( 'wp_loaded', '_add_template_loader_filters' ); 723 723
Note: See TracChangeset
for help on using the changeset viewer.